From f2a0ee5b93ba2fa52117a80558c2a23a1ddcc0ed Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 14 Sep 2019 09:33:55 +0000 Subject: [PATCH 001/250] Update to .gitignore --- .gitignore | 56 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/.gitignore b/.gitignore index 0c70a7ea35..2f8f6d1575 100644 --- a/.gitignore +++ b/.gitignore @@ -17,47 +17,56 @@ e Compiled source # ############ # it's better to unpack these files and commit the raw source # git has its own built in compression methods -*.7z -*.dmg -*.gz -*.iso -*.jar -*.rar -*.tar -*.zip +*.7z/ +*.dmg/ +*.gz/ +*.iso/ +*.jar/ +*.rar/ +*.tar/ +*.zip/ .vagrant # Logs and databases # +# The .1-.7/ are for worker files saved in debugging ###################### -*.log -*.pid -*.sqlite -*.cfg +*.log/ +*.pid/ +*.sqlite/ +*.cfg/ *.cfg.old -*.cfg.sh -*.err +*.cfg.sh/ +*.err/ +*.1/ +*.2/ +*.3/ +*.4/ +*.5/ +*.6/ +*.7/ +*.out/ # OS generated files # ###################### -.DS_Store +.DS_Store/ .DS_Store? ._* .Spotlight-V100 .Trashes -ehthumbs.db -Thumbs.db -*.cache -*.pyc +ehthumbs.db/ +Thumbs.db/ +*.cache/ +*.pyc/ *.swp -*.un~ +*.un~/ # Git # ####### -*.orig +*.orig/ # Git # ####### -*.orig +*.orig/ *.un~ .merge_file_* @@ -75,7 +84,7 @@ augur_venv/ # Node # ######## *node_modules/ -yarn.lock +yarn.lock/ # Augur # ######### @@ -91,6 +100,7 @@ docs/python/build/doctrees/AugurContext.doctree docs/python/build/doctrees/augurcontext.doctree logs/ + # build directories # ##################### build/ From 0bf6b32be86595be3a9913a0e4052421a33aeca2 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Fri, 1 Nov 2019 18:01:56 -0500 Subject: [PATCH 002/250] configurable insight worker training days and anomaly days, fixed sending to jonah too --- .../insight_worker/insight_worker/runtime.py | 30 +++++----- .../insight_worker/insight_worker/worker.py | 59 +++++++++++++------ 2 files changed, 56 insertions(+), 33 deletions(-) diff --git a/workers/insight_worker/insight_worker/runtime.py b/workers/insight_worker/insight_worker/runtime.py index 5d59214878..cc9a848244 100644 --- a/workers/insight_worker/insight_worker/runtime.py +++ b/workers/insight_worker/insight_worker/runtime.py @@ -53,7 +53,7 @@ def main(augur_url, host, port): #load credentials credentials = read_config("Database", use_main_config=1) server = read_config("Server", use_main_config=1) - worker_info = read_config("Workers", use_main_config=1) + worker_info = read_config("Workers", use_main_config=1)['insight_worker'] worker_port = worker_info['port'] if 'port' in worker_info else port while True: @@ -68,19 +68,21 @@ def main(augur_url, host, port): logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) config = { - "id": "com.augurlabs.core.insight_worker.{}".format(worker_port), - "broker_port": server["port"], - "broker_host": server["host"], - "zombie_id": 22, - "host": credentials["host"], - "location": "http://{}:{}".format(server["host"],worker_port), - "password": credentials["password"], - "port": credentials["port"], - "user": credentials["user"], - "endpoint": "http://{}:{}/api/unstable/metrics/status".format(server["host"],server['port']), - "database": credentials["database"], - "type": "string" - } + "id": "com.augurlabs.core.insight_worker.{}".format(worker_port), + "broker_port": server["port"], + "broker_host": server["host"], + "zombie_id": 22, + "training_days": worker_info['training_days'] if 'training_days' in worker_info else 365, + "anomaly_days": worker_info['anomaly_days'] if 'anomaly_days' in worker_info else 90, + "host": credentials["host"], + "location": "http://{}:{}".format(server["host"],worker_port), + "password": credentials["password"], + "port": credentials["port"], + "user": credentials["user"], + "endpoint": "http://{}:{}/api/unstable/metrics/status".format(server["host"],server['port']), + "database": credentials["database"], + "type": "string" + } #create instance of the worker app.insight_worker = InsightWorker(config) # declares the worker that will be running on this server with specified config diff --git a/workers/insight_worker/insight_worker/worker.py b/workers/insight_worker/insight_worker/worker.py index 493c697b05..6c3543d856 100644 --- a/workers/insight_worker/insight_worker/worker.py +++ b/workers/insight_worker/insight_worker/worker.py @@ -1,6 +1,6 @@ from multiprocessing import Process, Queue from urllib.parse import urlparse -import requests +import requests, sys import pandas as pd import sqlalchemy as s from sqlalchemy.ext.automap import automap_base @@ -42,6 +42,8 @@ def __init__(self, config, task=None): self.refresh = True self.send_insights = True self.finishing_task = False + self.anomaly_days = self.config['anomaly_days'] + self.training_days = self.config['training_days'] logging.info("Worker initializing...") @@ -102,8 +104,21 @@ def __init__(self, config, task=None): self.history_table = HelperBase.classes.worker_history.__table__ self.job_table = HelperBase.classes.worker_job.__table__ - requests.post('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'],self.config['broker_port']), json=specs) #hello message + connected = False + for i in range(5): + try: + logging.info("attempt {}".format(i)) + if i > 0: + time.sleep(10) + requests.post('http://{}:{}/api/unstable/workers'.format( + self.config['broker_host'],self.config['broker_port']), json=specs) + logging.info("Connection to the broker was successful") + connected = True + break + except requests.exceptions.ConnectionError: + logging.error('Cannot connect to the broker. Trying again...') + if not connected: + sys.exit('Could not connect to the broker after 5 attempts! Quitting...') def update_config(self, config): @@ -231,24 +246,21 @@ def is_unique_key(key): logging.info("Endpoint with url: {} returned an empty response. Moving on to next endpoint.\n".format(url)) continue - # ci after past year insights after 90 days # num issues, issue comments, num commits, num pr, comments pr logging.info("Found the following unique keys for this endpoint: {}".format(unique_keys)) date_filtered_data = [] i = 0 not_timeseries = False + begin_date = datetime.datetime.now() + + # Subtract configurable amount of time + begin_date = begin_date - datetime.timedelta(days=self.training_days) + begin_date = begin_date.strftime('%Y-%m-%d') for dict in data: - begin_date = datetime.datetime.now() - # Subtract 1 year and leap year check - try: - begin_date = begin_date.replace(year=begin_date.year-1) - except ValueError: - begin_date = begin_date.replace(year=begin_date.year-1, day=begin_date.day-1) - begin_date = begin_date.strftime('%Y-%m-%d') try: if dict['date'] > begin_date: date_filtered_data = data[i:] - logging.info("data 365 days ago date found: {}, {}".format(dict['date'], begin_date)) + logging.info("data {} days ago date found: {}, {}".format(self.training_days, dict['date'], begin_date)) break except: logging.info("Endpoint {} is not a timeseries, moving to next".format(endpoint)) @@ -261,13 +273,14 @@ def is_unique_key(key): date_found_index = None date_found = False x = 0 - begin_date = datetime.datetime.now() - datetime.timedelta(days=90) + + begin_date = datetime.datetime.now() - datetime.timedelta(days=self.anomaly_days) for dict in date_filtered_data: dict_date = datetime.datetime.strptime(dict['date'], '%Y-%m-%dT%H:%M:%S.%fZ')#2018-08-20T00:00:00.000Z if dict_date > begin_date and not date_found: date_found = True date_found_index = x - logging.info("raw values 90 days ago date found: {}, {}".format(dict['date'], begin_date)) + logging.info("raw values within {} days ago date found: {}, {}".format(self.anomaly_days, dict['date'], begin_date)) x += 1 for key in unique_keys: try: @@ -433,15 +446,23 @@ def register_task_completion(self, entry_info, model): def send_insight(self, insight, units_from_mean): try: - begin_date = datetime.datetime.now() - datetime.timedelta(days=30) + repoSQL = s.sql.text(""" + SELECT repo_git, rg_name + FROM repo, repo_groups + WHERE repo_id = {} + """.format(insight['repo_id'])) + + repo = pd.read_sql(repoSQL, self.db, params={}).iloc[0] + + begin_date = datetime.datetime.now() - datetime.timedelta(days=self.anomaly_days) dict_date = datetime.datetime.strptime(insight['ri_date'], '%Y-%m-%dT%H:%M:%S.%fZ')#2018-08-20T00:00:00.000Z - logging.info("about to send to jonah") + # logging.info("about to send to jonah") if dict_date > begin_date and self.send_insights: - logging.info("Insight less than 7 days ago date found: {}\n\nSending to Jonah...".format(insight)) + logging.info("Insight less than {} days ago date found: {}\n\nSending to Jonah...".format(self.anomaly_days, insight)) to_send = { 'insight': True, - 'rg_name': insight['rg_name'], - 'repo_git': insight['repo_git'], + # 'rg_name': repo['rg_name'], + 'repo_git': repo['repo_git'], 'value': insight['ri_value'], 'field': insight['ri_field'], 'metric': insight['ri_metric'], From 17fe26f2e3658058d5110d831bc984d4cdfb64cd Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sat, 2 Nov 2019 11:47:06 -0500 Subject: [PATCH 003/250] include scipy to insight worker setup.py install, github worker always inserts canonical and has some additional commenting on the search_users method for the contributor model --- workers/github_worker/github_worker/worker.py | 224 +++++++++--------- workers/insight_worker/setup.py | 2 +- 2 files changed, 118 insertions(+), 108 deletions(-) diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 3b8e3fde6b..95d4118833 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -299,16 +299,18 @@ def search_users(self, entry_info): # cmt_author_raw_email # cmt_committer_raw_email rs = pd.read_sql(userSQL, self.db, params={}) - commits = rs.to_json(orient="records") - commits = json.loads(commits) + commit_cntrbs = rs.to_json(orient="records") + commit_cntrbs = json.loads(commit_cntrbs) logging.info("We found {} distinct contributors to search for in this repo (repo_id = {})".format( - len(commits), entry_info['repo_id'])) + len(commit_cntrbs), entry_info['repo_id'])) + # Get all contributors in the database to check for duplicates pseudo_key_gh = 'login' pseudo_key_augur = 'cntrb_login' table = 'contributors' cntrb_table_values = self.get_table_values([pseudo_key_augur, 'cntrb_email', 'cntrb_id'], [table]) - for tuple in commits: + + for tuple in commit_cntrbs: try: author = {'fname': tuple['cmt_author_name'].split()[0], 'lname': tuple['cmt_author_name'].split()[1], 'email': tuple['cmt_author_email']} @@ -331,111 +333,118 @@ def search_users(self, entry_info): self.update_rate_limit(r) results = r.json() - if 'total_count' in results: - if results['total_count'] != 0: - logging.info("When searching for a contributor with info {}, we found the following users: {}".format( - cmt_cntrb, results)) - match = results['items'][0] - for item in results['items']: - if item['score'] > match['score']: - match = item - - match = self.assign_tuple_action([match], cntrb_table_values, - {'cntrb_email': 'email'}, {pseudo_key_augur: pseudo_key_gh}, 'cntrb_id')[0] - - cntrb_url = ("https://api.github.com/users/" + match['login']) - logging.info("Hitting endpoint: " + cntrb_url + " ...\n") - r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) - contributor = r.json() - - company = None - location = None - email = cmt_cntrb['email'] - canonical_email = cmt_cntrb['email'] - alias = False - if 'company' in contributor: - company = contributor['company'] - if 'location' in contributor: - location = contributor['location'] - if 'email' in contributor: - email = contributor['email'] - if email != cmt_cntrb['email']: - alias = True - - # aliasSQL = s.sql.text(""" - # SELECT canonical_email - # FROM contributors_aliases - # WHERE alias_email = {} - # """.format(contributor['email'])) - # rs = pd.read_sql(aliasSQL, self.db, params={}) - - #rs.iloc[0]["canonical_email"] - - cntrb = { - "cntrb_login": contributor['login'], - "cntrb_created_at": contributor['created_at'], - "cntrb_email": email, - "cntrb_company": company, - "cntrb_location": location, - # "cntrb_type": , dont have a use for this as of now ... let it default to null - "cntrb_canonical": canonical_email, - "gh_user_id": contributor['id'], - "gh_login": contributor['login'], - "gh_url": contributor['url'], - "gh_html_url": contributor['html_url'], - "gh_node_id": contributor['node_id'], - "gh_avatar_url": contributor['avatar_url'], - "gh_gravatar_id": contributor['gravatar_id'], - "gh_followers_url": contributor['followers_url'], - "gh_following_url": contributor['following_url'], - "gh_gists_url": contributor['gists_url'], - "gh_starred_url": contributor['starred_url'], - "gh_subscriptions_url": contributor['subscriptions_url'], - "gh_organizations_url": contributor['organizations_url'], - "gh_repos_url": contributor['repos_url'], - "gh_events_url": contributor['events_url'], - "gh_received_events_url": contributor['received_events_url'], - "gh_type": contributor['type'], - "gh_site_admin": contributor['site_admin'], + # If no matches or bad response, continue with other contributors + if 'total_count' not in results: + continue + if results['total_count'] == 0: + continue + + logging.info("When searching for a contributor with info {}, we found the following users: {}".format( + cmt_cntrb, results)) + + # Grab first result and make sure it has the highest match score + match = results['items'][0] + for item in results['items']: + if item['score'] > match['score']: + match = item + + # Determine if this searched contributor + match = self.assign_tuple_action([match], cntrb_table_values, + {'cntrb_email': 'email'}, {pseudo_key_augur: pseudo_key_gh}, 'cntrb_id')[0] + + cntrb_url = ("https://api.github.com/users/" + match['login']) + logging.info("Hitting endpoint: " + cntrb_url + " ...\n") + r = requests.get(url=cntrb_url, headers=self.headers) + self.update_rate_limit(r) + contributor = r.json() + + company = None + location = None + email = cmt_cntrb['email'] + canonical_email = cmt_cntrb['email'] + alias = False + if 'company' in contributor: + company = contributor['company'] + if 'location' in contributor: + location = contributor['location'] + if 'email' in contributor: + email = contributor['email'] + if email != cmt_cntrb['email']: + alias = True + + # aliasSQL = s.sql.text(""" + # SELECT canonical_email + # FROM contributors_aliases + # WHERE alias_email = {} + # """.format(contributor['email'])) + # rs = pd.read_sql(aliasSQL, self.db, params={}) + + #rs.iloc[0]["canonical_email"] + + cntrb = { + "cntrb_login": contributor['login'], + "cntrb_created_at": contributor['created_at'], + "cntrb_email": email, + "cntrb_company": company, + "cntrb_location": location, + # "cntrb_type": , dont have a use for this as of now ... let it default to null + "cntrb_canonical": canonical_email, + "gh_user_id": contributor['id'], + "gh_login": contributor['login'], + "gh_url": contributor['url'], + "gh_html_url": contributor['html_url'], + "gh_node_id": contributor['node_id'], + "gh_avatar_url": contributor['avatar_url'], + "gh_gravatar_id": contributor['gravatar_id'], + "gh_followers_url": contributor['followers_url'], + "gh_following_url": contributor['following_url'], + "gh_gists_url": contributor['gists_url'], + "gh_starred_url": contributor['starred_url'], + "gh_subscriptions_url": contributor['subscriptions_url'], + "gh_organizations_url": contributor['organizations_url'], + "gh_repos_url": contributor['repos_url'], + "gh_events_url": contributor['events_url'], + "gh_received_events_url": contributor['received_events_url'], + "gh_type": contributor['type'], + "gh_site_admin": contributor['site_admin'], + "tool_source": self.tool_source, + "tool_version": self.tool_version, + "data_source": self.data_source, + 'cntrb_full_name': cmt_cntrb['fname'] + ' ' + cmt_cntrb['lname'] + } + + # Commit insertion to table + if match['flag'] == 'need_update': + result = self.db.execute(self.contributors_table.update().where( + self.history_table.c.cntrb_email==email).values(cntrb)) + logging.info("Updated tuple in the contributors table with existing email: {}".format(email)) + self.cntrb_id_inc = match['pkey'] + elif match['flag'] == 'need_insertion': + result = self.db.execute(self.contributors_table.insert().values(cntrb)) + logging.info("Primary key inserted into the contributors table: {}".format(result.inserted_primary_key)) + self.results_counter += 1 + + logging.info("Inserted contributor: " + contributor['login'] + "\n") + + # Increment our global track of the cntrb id for the possibility of it being used as a FK + self.cntrb_id_inc = int(result.inserted_primary_key[0]) + + if alias: + try: + alias_tuple = { + 'cntrb_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), + 'cntrb_a_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), + 'canonical_email': cmt_cntrb['email'], + 'alias_email': contributor['email'], + 'cntrb_active': 1, "tool_source": self.tool_source, "tool_version": self.tool_version, - "data_source": self.data_source, - 'cntrb_full_name': cmt_cntrb['fname'] + ' ' + cmt_cntrb['lname'] + "data_source": self.data_source } - - # Commit insertion to table - if match['flag'] == 'need_update': - result = self.db.execute(self.contributors_table.update().where( - self.history_table.c.cntrb_email==email).values(cntrb)) - logging.info("Updated tuple in the contributors table with existing email: {}".format(email)) - self.cntrb_id_inc = match['pkey'] - elif match['flag'] == 'need_insertion': - result = self.db.execute(self.contributors_table.insert().values(cntrb)) - logging.info("Primary key inserted into the contributors table: {}".format(result.inserted_primary_key)) - self.results_counter += 1 - - logging.info("Inserted contributor: " + contributor['login'] + "\n") - - # Increment our global track of the cntrb id for the possibility of it being used as a FK - self.cntrb_id_inc = int(result.inserted_primary_key[0]) - - if alias: - try: - alias_tuple = { - 'cntrb_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), - 'cntrb_a_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), - 'canonical_email': cmt_cntrb['email'], - 'alias_email': contributor['email'], - 'cntrb_active': 1, - "tool_source": self.tool_source, - "tool_version": self.tool_version, - "data_source": self.data_source - } - result = self.db.execute(self.contributors_aliases_table.insert().values(alias_tuple)) - logging.info("Inserted alias with email: {}".format(email)) - except Exception as e: - logging.info("Error inserting alias w emails {} and {}: {}".format(contributor['email'], cmt_cntrb['email'], e)) + result = self.db.execute(self.contributors_aliases_table.insert().values(alias_tuple)) + logging.info("Inserted alias with email: {}".format(email)) + except Exception as e: + logging.info("Error inserting alias w emails {} and {}: {}".format(contributor['email'], cmt_cntrb['email'], e)) #Register this task as completed self.register_task_completion(entry_info, "contributors") @@ -549,6 +558,7 @@ def query_contributors(self, entry_info): location = contributor['location'] if 'email' in contributor: email = contributor['email'] + canonical_email = contributor['email'] # aliasSQL = s.sql.text(""" # SELECT canonical_email @@ -557,7 +567,7 @@ def query_contributors(self, entry_info): # """.format(contributor['email'])) # rs = pd.read_sql(aliasSQL, self.db, params={}) - canonical_email = None#rs.iloc[0]["canonical_email"] + #canonical_email = rs.iloc[0]["canonical_email"] cntrb = { "cntrb_login": contributor['login'], diff --git a/workers/insight_worker/setup.py b/workers/insight_worker/setup.py index 752e0f6166..497fbb61ec 100644 --- a/workers/insight_worker/setup.py +++ b/workers/insight_worker/setup.py @@ -27,7 +27,7 @@ def read(filename): packages=find_packages(exclude=('tests',)), - install_requires=['flask', 'numpy', 'requests', 'psycopg2-binary', 'click'], + install_requires=['flask', 'numpy', 'requests', 'psycopg2-binary', 'click', 'scipy'], entry_points={ 'console_scripts': [ From 9bd80648edde2679b2ca1adf17ccc34c58aa122b Mon Sep 17 00:00:00 2001 From: Carolyn Perniciaro Date: Sat, 2 Nov 2019 12:33:15 -0500 Subject: [PATCH 004/250] Removed Total/Net/Added switch under Average Lines of Code Per Commit. Signed-off-by: Carolyn Perniciaro --- augur_venv/bin/activate | 84 +++++++++++++++ augur_venv/bin/activate.csh | 55 ++++++++++ augur_venv/bin/activate.fish | 102 ++++++++++++++++++ augur_venv/bin/activate.ps1 | 60 +++++++++++ augur_venv/bin/activate.xsh | 46 ++++++++ augur_venv/bin/activate_this.py | 46 ++++++++ augur_venv/bin/alembic | 12 +++ augur_venv/bin/augur | 12 +++ augur_venv/bin/augur_run | 12 +++ augur_venv/bin/chardetect | 12 +++ augur_venv/bin/coloredlogs | 12 +++ augur_venv/bin/cygdb | 12 +++ augur_venv/bin/cython | 12 +++ augur_venv/bin/cythonize | 12 +++ augur_venv/bin/easy_install | 12 +++ augur_venv/bin/easy_install-3.6 | 12 +++ augur_venv/bin/easy_install-3.7 | 10 ++ augur_venv/bin/f2py | 12 +++ augur_venv/bin/f2py3 | 12 +++ augur_venv/bin/f2py3.7 | 12 +++ augur_venv/bin/facade_worker_start | 12 +++ augur_venv/bin/flask | 12 +++ augur_venv/bin/github_worker_start | 12 +++ augur_venv/bin/gunicorn | 12 +++ augur_venv/bin/gunicorn_paster | 12 +++ augur_venv/bin/humanfriendly | 12 +++ augur_venv/bin/insight_worker_start | 12 +++ augur_venv/bin/ipdb3 | 12 +++ augur_venv/bin/iptest | 12 +++ augur_venv/bin/iptest3 | 12 +++ augur_venv/bin/ipython | 12 +++ augur_venv/bin/ipython3 | 12 +++ augur_venv/bin/jupyter | 10 ++ augur_venv/bin/jupyter-kernel | 10 ++ augur_venv/bin/jupyter-kernelspec | 10 ++ augur_venv/bin/jupyter-migrate | 10 ++ augur_venv/bin/jupyter-run | 10 ++ augur_venv/bin/jupyter-troubleshoot | 10 ++ augur_venv/bin/linux_badge_worker_start | 12 +++ augur_venv/bin/mako-render | 12 +++ augur_venv/bin/metric_status_worker_start | 12 +++ augur_venv/bin/pip | 10 ++ augur_venv/bin/pip3 | 10 ++ augur_venv/bin/pip3.7 | 10 ++ augur_venv/bin/pipreqs | 10 ++ augur_venv/bin/pull_request_worker_start | 12 +++ augur_venv/bin/py.test | 12 +++ augur_venv/bin/pybabel | 10 ++ augur_venv/bin/pygmentize | 12 +++ augur_venv/bin/pyjwt | 12 +++ augur_venv/bin/pytest | 12 +++ augur_venv/bin/python | 1 + augur_venv/bin/python-config | 78 ++++++++++++++ augur_venv/bin/python3 | 1 + augur_venv/bin/python3.7 | Bin 0 -> 12552 bytes augur_venv/bin/repo_info_worker_start | 12 +++ augur_venv/bin/rst2html.py | 23 ++++ augur_venv/bin/rst2html4.py | 26 +++++ augur_venv/bin/rst2html5.py | 35 ++++++ augur_venv/bin/rst2latex.py | 26 +++++ augur_venv/bin/rst2man.py | 26 +++++ augur_venv/bin/rst2odt.py | 30 ++++++ augur_venv/bin/rst2odt_prepstyles.py | 67 ++++++++++++ augur_venv/bin/rst2pseudoxml.py | 23 ++++ augur_venv/bin/rst2s5.py | 24 +++++ augur_venv/bin/rst2xetex.py | 27 +++++ augur_venv/bin/rst2xml.py | 23 ++++ augur_venv/bin/rstpep2html.py | 25 +++++ augur_venv/bin/sphinx-apidoc | 10 ++ augur_venv/bin/sphinx-autogen | 10 ++ augur_venv/bin/sphinx-build | 10 ++ augur_venv/bin/sphinx-quickstart | 10 ++ augur_venv/bin/tldextract | 12 +++ augur_venv/bin/value_worker_start | 12 +++ augur_venv/bin/vba_extract.py | 62 +++++++++++ augur_venv/bin/wheel | 10 ++ augur_venv/include/python3.7m | 1 + .../share/jupyter/kernels/python3/kernel.json | 11 ++ .../jupyter/kernels/python3/logo-32x32.png | Bin 0 -> 1084 bytes .../jupyter/kernels/python3/logo-64x64.png | Bin 0 -> 2180 bytes augur_venv/share/man/man1/ipython.1.gz | Bin 0 -> 1039 bytes .../components/charts/HorizontalBarChart.vue | 12 +-- frontend/src/styles/augur.styl | 4 +- 83 files changed, 1512 insertions(+), 8 deletions(-) create mode 100644 augur_venv/bin/activate create mode 100644 augur_venv/bin/activate.csh create mode 100644 augur_venv/bin/activate.fish create mode 100644 augur_venv/bin/activate.ps1 create mode 100644 augur_venv/bin/activate.xsh create mode 100644 augur_venv/bin/activate_this.py create mode 100755 augur_venv/bin/alembic create mode 100755 augur_venv/bin/augur create mode 100755 augur_venv/bin/augur_run create mode 100755 augur_venv/bin/chardetect create mode 100755 augur_venv/bin/coloredlogs create mode 100755 augur_venv/bin/cygdb create mode 100755 augur_venv/bin/cython create mode 100755 augur_venv/bin/cythonize create mode 100755 augur_venv/bin/easy_install create mode 100755 augur_venv/bin/easy_install-3.6 create mode 100755 augur_venv/bin/easy_install-3.7 create mode 100755 augur_venv/bin/f2py create mode 100755 augur_venv/bin/f2py3 create mode 100755 augur_venv/bin/f2py3.7 create mode 100755 augur_venv/bin/facade_worker_start create mode 100755 augur_venv/bin/flask create mode 100755 augur_venv/bin/github_worker_start create mode 100755 augur_venv/bin/gunicorn create mode 100755 augur_venv/bin/gunicorn_paster create mode 100755 augur_venv/bin/humanfriendly create mode 100755 augur_venv/bin/insight_worker_start create mode 100755 augur_venv/bin/ipdb3 create mode 100755 augur_venv/bin/iptest create mode 100755 augur_venv/bin/iptest3 create mode 100755 augur_venv/bin/ipython create mode 100755 augur_venv/bin/ipython3 create mode 100755 augur_venv/bin/jupyter create mode 100755 augur_venv/bin/jupyter-kernel create mode 100755 augur_venv/bin/jupyter-kernelspec create mode 100755 augur_venv/bin/jupyter-migrate create mode 100755 augur_venv/bin/jupyter-run create mode 100755 augur_venv/bin/jupyter-troubleshoot create mode 100755 augur_venv/bin/linux_badge_worker_start create mode 100755 augur_venv/bin/mako-render create mode 100755 augur_venv/bin/metric_status_worker_start create mode 100755 augur_venv/bin/pip create mode 100755 augur_venv/bin/pip3 create mode 100755 augur_venv/bin/pip3.7 create mode 100755 augur_venv/bin/pipreqs create mode 100755 augur_venv/bin/pull_request_worker_start create mode 100755 augur_venv/bin/py.test create mode 100755 augur_venv/bin/pybabel create mode 100755 augur_venv/bin/pygmentize create mode 100755 augur_venv/bin/pyjwt create mode 100755 augur_venv/bin/pytest create mode 120000 augur_venv/bin/python create mode 100755 augur_venv/bin/python-config create mode 120000 augur_venv/bin/python3 create mode 100755 augur_venv/bin/python3.7 create mode 100755 augur_venv/bin/repo_info_worker_start create mode 100755 augur_venv/bin/rst2html.py create mode 100755 augur_venv/bin/rst2html4.py create mode 100755 augur_venv/bin/rst2html5.py create mode 100755 augur_venv/bin/rst2latex.py create mode 100755 augur_venv/bin/rst2man.py create mode 100755 augur_venv/bin/rst2odt.py create mode 100755 augur_venv/bin/rst2odt_prepstyles.py create mode 100755 augur_venv/bin/rst2pseudoxml.py create mode 100755 augur_venv/bin/rst2s5.py create mode 100755 augur_venv/bin/rst2xetex.py create mode 100755 augur_venv/bin/rst2xml.py create mode 100755 augur_venv/bin/rstpep2html.py create mode 100755 augur_venv/bin/sphinx-apidoc create mode 100755 augur_venv/bin/sphinx-autogen create mode 100755 augur_venv/bin/sphinx-build create mode 100755 augur_venv/bin/sphinx-quickstart create mode 100755 augur_venv/bin/tldextract create mode 100755 augur_venv/bin/value_worker_start create mode 100755 augur_venv/bin/vba_extract.py create mode 100755 augur_venv/bin/wheel create mode 120000 augur_venv/include/python3.7m create mode 100644 augur_venv/share/jupyter/kernels/python3/kernel.json create mode 100644 augur_venv/share/jupyter/kernels/python3/logo-32x32.png create mode 100644 augur_venv/share/jupyter/kernels/python3/logo-64x64.png create mode 100644 augur_venv/share/man/man1/ipython.1.gz diff --git a/augur_venv/bin/activate b/augur_venv/bin/activate new file mode 100644 index 0000000000..cd5cdb1fb7 --- /dev/null +++ b/augur_venv/bin/activate @@ -0,0 +1,84 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + + +if [ "${BASH_SOURCE-}" = "$0" ]; then + echo "You must source this script: \$ source $0" >&2 + exit 33 +fi + +deactivate () { + unset -f pydoc >/dev/null 2>&1 + + # reset old environment variables + # ! [ -z ${VAR+_} ] returns true if VAR is declared at all + if ! [ -z "${_OLD_VIRTUAL_PATH:+_}" ] ; then + PATH="$_OLD_VIRTUAL_PATH" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then + PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then + hash -r 2>/dev/null + fi + + if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then + PS1="$_OLD_VIRTUAL_PS1" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + if [ ! "${1-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/Users/carolynperniciaro/augur/augur_venv" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +if ! [ -z "${PYTHONHOME+_}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1-}" + if [ "x" != x ] ; then + PS1="${PS1-}" + else + PS1="(`basename \"$VIRTUAL_ENV\"`) ${PS1-}" + fi + export PS1 +fi + +# Make sure to unalias pydoc if it's already there +alias pydoc 2>/dev/null >/dev/null && unalias pydoc || true + +pydoc () { + python -m pydoc "$@" +} + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then + hash -r 2>/dev/null +fi diff --git a/augur_venv/bin/activate.csh b/augur_venv/bin/activate.csh new file mode 100644 index 0000000000..be1e88ec10 --- /dev/null +++ b/augur_venv/bin/activate.csh @@ -0,0 +1,55 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . + +set newline='\ +' + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH:q" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT:q" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/Users/carolynperniciaro/augur/augur_venv" + +set _OLD_VIRTUAL_PATH="$PATH:q" +setenv PATH "$VIRTUAL_ENV:q/bin:$PATH:q" + + + +if ("" != "") then + set env_name = "" +else + set env_name = '('"$VIRTUAL_ENV:t:q"') ' +endif + +if ( $?VIRTUAL_ENV_DISABLE_PROMPT ) then + if ( $VIRTUAL_ENV_DISABLE_PROMPT == "" ) then + set do_prompt = "1" + else + set do_prompt = "0" + endif +else + set do_prompt = "1" +endif + +if ( $do_prompt == "1" ) then + # Could be in a non-interactive environment, + # in which case, $prompt is undefined and we wouldn't + # care about the prompt anyway. + if ( $?prompt ) then + set _OLD_VIRTUAL_PROMPT="$prompt:q" + if ( "$prompt:q" =~ *"$newline:q"* ) then + : + else + set prompt = "$env_name:q$prompt:q" + endif + endif +endif + +unset env_name +unset do_prompt + +alias pydoc python -m pydoc + +rehash diff --git a/augur_venv/bin/activate.fish b/augur_venv/bin/activate.fish new file mode 100644 index 0000000000..a484e216e3 --- /dev/null +++ b/augur_venv/bin/activate.fish @@ -0,0 +1,102 @@ +# This file must be used using `source bin/activate.fish` *within a running fish ( http://fishshell.com ) session*. +# Do not run it directly. + +function _bashify_path -d "Converts a fish path to something bash can recognize" + set fishy_path $argv + set bashy_path $fishy_path[1] + for path_part in $fishy_path[2..-1] + set bashy_path "$bashy_path:$path_part" + end + echo $bashy_path +end + +function _fishify_path -d "Converts a bash path to something fish can recognize" + echo $argv | tr ':' '\n' +end + +function deactivate -d 'Exit virtualenv mode and return to the normal environment.' + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + # https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling + if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 + set -gx PATH (_fishify_path $_OLD_VIRTUAL_PATH) + else + set -gx PATH $_OLD_VIRTUAL_PATH + end + set -e _OLD_VIRTUAL_PATH + end + + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + and functions -q _old_fish_prompt + # Set an empty local `$fish_function_path` to allow the removal of `fish_prompt` using `functions -e`. + set -l fish_function_path + + # Erase virtualenv's `fish_prompt` and restore the original. + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + end + + set -e VIRTUAL_ENV + + if test "$argv[1]" != 'nondestructive' + # Self-destruct! + functions -e pydoc + functions -e deactivate + functions -e _bashify_path + functions -e _fishify_path + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/Users/carolynperniciaro/augur/augur_venv" + +# https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling +if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 + set -gx _OLD_VIRTUAL_PATH (_bashify_path $PATH) +else + set -gx _OLD_VIRTUAL_PATH $PATH +end +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset `$PYTHONHOME` if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +function pydoc + python -m pydoc $argv +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # Copy the current `fish_prompt` function as `_old_fish_prompt`. + functions -c fish_prompt _old_fish_prompt + + function fish_prompt + # Save the current $status, for fish_prompts that display it. + set -l old_status $status + + # Prompt override provided? + # If not, just prepend the environment name. + if test -n "" + printf '%s%s' "" (set_color normal) + else + printf '%s(%s) ' (set_color normal) (basename "$VIRTUAL_ENV") + end + + # Restore the original $status + echo "exit $old_status" | source + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" +end diff --git a/augur_venv/bin/activate.ps1 b/augur_venv/bin/activate.ps1 new file mode 100644 index 0000000000..95504d3956 --- /dev/null +++ b/augur_venv/bin/activate.ps1 @@ -0,0 +1,60 @@ +$script:THIS_PATH = $myinvocation.mycommand.path +$script:BASE_DIR = Split-Path (Resolve-Path "$THIS_PATH/..") -Parent + +function global:deactivate([switch] $NonDestructive) { + if (Test-Path variable:_OLD_VIRTUAL_PATH) { + $env:PATH = $variable:_OLD_VIRTUAL_PATH + Remove-Variable "_OLD_VIRTUAL_PATH" -Scope global + } + + if (Test-Path function:_old_virtual_prompt) { + $function:prompt = $function:_old_virtual_prompt + Remove-Item function:\_old_virtual_prompt + } + + if ($env:VIRTUAL_ENV) { + Remove-Item env:VIRTUAL_ENV -ErrorAction SilentlyContinue + } + + if (!$NonDestructive) { + # Self destruct! + Remove-Item function:deactivate + Remove-Item function:pydoc + } +} + +function global:pydoc { + python -m pydoc $args +} + +# unset irrelevant variables +deactivate -nondestructive + +$VIRTUAL_ENV = $BASE_DIR +$env:VIRTUAL_ENV = $VIRTUAL_ENV + +New-Variable -Scope global -Name _OLD_VIRTUAL_PATH -Value $env:PATH + +$env:PATH = "$env:VIRTUAL_ENV/bin:" + $env:PATH +if (!$env:VIRTUAL_ENV_DISABLE_PROMPT) { + function global:_old_virtual_prompt { + "" + } + $function:_old_virtual_prompt = $function:prompt + + if ("" -ne "") { + function global:prompt { + # Add the custom prefix to the existing prompt + $previous_prompt_value = & $function:_old_virtual_prompt + ("" + $previous_prompt_value) + } + } + else { + function global:prompt { + # Add a prefix to the current prompt, but don't discard it. + $previous_prompt_value = & $function:_old_virtual_prompt + $new_prompt_value = "($( Split-Path $env:VIRTUAL_ENV -Leaf )) " + ($new_prompt_value + $previous_prompt_value) + } + } +} diff --git a/augur_venv/bin/activate.xsh b/augur_venv/bin/activate.xsh new file mode 100644 index 0000000000..55d3e016da --- /dev/null +++ b/augur_venv/bin/activate.xsh @@ -0,0 +1,46 @@ +"""Xonsh activate script for virtualenv""" +from xonsh.tools import get_sep as _get_sep + +def _deactivate(args): + if "pydoc" in aliases: + del aliases["pydoc"] + + if ${...}.get("_OLD_VIRTUAL_PATH", ""): + $PATH = $_OLD_VIRTUAL_PATH + del $_OLD_VIRTUAL_PATH + + if ${...}.get("_OLD_VIRTUAL_PYTHONHOME", ""): + $PYTHONHOME = $_OLD_VIRTUAL_PYTHONHOME + del $_OLD_VIRTUAL_PYTHONHOME + + if "VIRTUAL_ENV" in ${...}: + del $VIRTUAL_ENV + + if "VIRTUAL_ENV_PROMPT" in ${...}: + del $VIRTUAL_ENV_PROMPT + + if "nondestructive" not in args: + # Self destruct! + del aliases["deactivate"] + + +# unset irrelevant variables +_deactivate(["nondestructive"]) +aliases["deactivate"] = _deactivate + +$VIRTUAL_ENV = r"/Users/carolynperniciaro/augur/augur_venv" + +$_OLD_VIRTUAL_PATH = $PATH +$PATH = $PATH[:] +$PATH.add($VIRTUAL_ENV + _get_sep() + "bin", front=True, replace=True) + +if ${...}.get("PYTHONHOME", ""): + # unset PYTHONHOME if set + $_OLD_VIRTUAL_PYTHONHOME = $PYTHONHOME + del $PYTHONHOME + +$VIRTUAL_ENV_PROMPT = "" +if not $VIRTUAL_ENV_PROMPT: + del $VIRTUAL_ENV_PROMPT + +aliases["pydoc"] = ["python", "-m", "pydoc"] diff --git a/augur_venv/bin/activate_this.py b/augur_venv/bin/activate_this.py new file mode 100644 index 0000000000..aa96457f28 --- /dev/null +++ b/augur_venv/bin/activate_this.py @@ -0,0 +1,46 @@ +"""Activate virtualenv for current interpreter: + +Use exec(open(this_file).read(), {'__file__': this_file}). + +This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. +""" +import os +import site +import sys + +try: + __file__ +except NameError: + raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") + +# prepend bin to PATH (this file is inside the bin directory) +bin_dir = os.path.dirname(os.path.abspath(__file__)) +os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) + +base = os.path.dirname(bin_dir) + +# virtual env is right above bin directory +os.environ["VIRTUAL_ENV"] = base + +# add the virtual environments site-package to the host python import mechanism +IS_PYPY = hasattr(sys, "pypy_version_info") +IS_JYTHON = sys.platform.startswith("java") +if IS_JYTHON: + site_packages = os.path.join(base, "Lib", "site-packages") +elif IS_PYPY: + site_packages = os.path.join(base, "site-packages") +else: + IS_WIN = sys.platform == "win32" + if IS_WIN: + site_packages = os.path.join(base, "Lib", "site-packages") + else: + site_packages = os.path.join(base, "lib", "python{}.{}".format(*sys.version_info), "site-packages") + +prev = set(sys.path) +site.addsitedir(site_packages) +sys.real_prefix = sys.prefix +sys.prefix = base + +# Move the added items to the front of the path, in place +new = list(sys.path) +sys.path[:] = [i for i in new if i not in prev] + [i for i in new if i in prev] diff --git a/augur_venv/bin/alembic b/augur_venv/bin/alembic new file mode 100755 index 0000000000..ceef610241 --- /dev/null +++ b/augur_venv/bin/alembic @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'alembic==1.1.0','console_scripts','alembic' +__requires__ = 'alembic==1.1.0' +import re +import sys + +from alembic.config import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/augur b/augur_venv/bin/augur new file mode 100755 index 0000000000..4368bf805c --- /dev/null +++ b/augur_venv/bin/augur @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'augur','console_scripts','augur' +__requires__ = 'augur' +import re +import sys + +from augur.runtime import run + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/augur_run b/augur_venv/bin/augur_run new file mode 100755 index 0000000000..045b4a86af --- /dev/null +++ b/augur_venv/bin/augur_run @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'augur','console_scripts','augur_run' +__requires__ = 'augur' +import re +import sys + +from augur.cli.run import run + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/chardetect b/augur_venv/bin/chardetect new file mode 100755 index 0000000000..49c7341d45 --- /dev/null +++ b/augur_venv/bin/chardetect @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'chardet==3.0.4','console_scripts','chardetect' +__requires__ = 'chardet==3.0.4' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('chardet==3.0.4', 'console_scripts', 'chardetect')() + ) diff --git a/augur_venv/bin/coloredlogs b/augur_venv/bin/coloredlogs new file mode 100755 index 0000000000..00416a17a3 --- /dev/null +++ b/augur_venv/bin/coloredlogs @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'coloredlogs==10.0','console_scripts','coloredlogs' +__requires__ = 'coloredlogs==10.0' +import re +import sys + +from coloredlogs.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/cygdb b/augur_venv/bin/cygdb new file mode 100755 index 0000000000..766907b36a --- /dev/null +++ b/augur_venv/bin/cygdb @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cygdb' +__requires__ = 'Cython==0.29.13' +import re +import sys + +from Cython.Debugger.Cygdb import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/cython b/augur_venv/bin/cython new file mode 100755 index 0000000000..d8b1aacce2 --- /dev/null +++ b/augur_venv/bin/cython @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cython' +__requires__ = 'Cython==0.29.13' +import re +import sys + +from Cython.Compiler.Main import setuptools_main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(setuptools_main()) \ No newline at end of file diff --git a/augur_venv/bin/cythonize b/augur_venv/bin/cythonize new file mode 100755 index 0000000000..07554069ce --- /dev/null +++ b/augur_venv/bin/cythonize @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cythonize' +__requires__ = 'Cython==0.29.13' +import re +import sys + +from Cython.Build.Cythonize import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install b/augur_venv/bin/easy_install new file mode 100755 index 0000000000..c9ac46a5ea --- /dev/null +++ b/augur_venv/bin/easy_install @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==41.2.0','console_scripts','easy_install' +__requires__ = 'setuptools==41.2.0' +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install-3.6 b/augur_venv/bin/easy_install-3.6 new file mode 100755 index 0000000000..f1d05e907e --- /dev/null +++ b/augur_venv/bin/easy_install-3.6 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==41.2.0','console_scripts','easy_install-3.6' +__requires__ = 'setuptools==41.2.0' +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install-3.7 b/augur_venv/bin/easy_install-3.7 new file mode 100755 index 0000000000..9d1bb61aae --- /dev/null +++ b/augur_venv/bin/easy_install-3.7 @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/f2py b/augur_venv/bin/f2py new file mode 100755 index 0000000000..2285bb49fd --- /dev/null +++ b/augur_venv/bin/f2py @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py' +__requires__ = 'numpy==1.17.2' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py')() + ) diff --git a/augur_venv/bin/f2py3 b/augur_venv/bin/f2py3 new file mode 100755 index 0000000000..383f1eb1ca --- /dev/null +++ b/augur_venv/bin/f2py3 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py3' +__requires__ = 'numpy==1.17.2' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py3')() + ) diff --git a/augur_venv/bin/f2py3.7 b/augur_venv/bin/f2py3.7 new file mode 100755 index 0000000000..6774860547 --- /dev/null +++ b/augur_venv/bin/f2py3.7 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py3.7' +__requires__ = 'numpy==1.17.2' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py3.7')() + ) diff --git a/augur_venv/bin/facade_worker_start b/augur_venv/bin/facade_worker_start new file mode 100755 index 0000000000..950ddf5d5f --- /dev/null +++ b/augur_venv/bin/facade_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'facade-worker','console_scripts','facade_worker_start' +__requires__ = 'facade-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('facade-worker', 'console_scripts', 'facade_worker_start')() + ) diff --git a/augur_venv/bin/flask b/augur_venv/bin/flask new file mode 100755 index 0000000000..508b6a6158 --- /dev/null +++ b/augur_venv/bin/flask @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'Flask==1.1.1','console_scripts','flask' +__requires__ = 'Flask==1.1.1' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('Flask==1.1.1', 'console_scripts', 'flask')() + ) diff --git a/augur_venv/bin/github_worker_start b/augur_venv/bin/github_worker_start new file mode 100755 index 0000000000..9a1ff7789e --- /dev/null +++ b/augur_venv/bin/github_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'github-worker','console_scripts','github_worker_start' +__requires__ = 'github-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('github-worker', 'console_scripts', 'github_worker_start')() + ) diff --git a/augur_venv/bin/gunicorn b/augur_venv/bin/gunicorn new file mode 100755 index 0000000000..c64b6637b0 --- /dev/null +++ b/augur_venv/bin/gunicorn @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'gunicorn==19.9.0','console_scripts','gunicorn' +__requires__ = 'gunicorn==19.9.0' +import re +import sys + +from gunicorn.app.wsgiapp import run + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/gunicorn_paster b/augur_venv/bin/gunicorn_paster new file mode 100755 index 0000000000..6625178128 --- /dev/null +++ b/augur_venv/bin/gunicorn_paster @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'gunicorn==19.9.0','console_scripts','gunicorn_paster' +__requires__ = 'gunicorn==19.9.0' +import re +import sys + +from gunicorn.app.pasterapp import run + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/humanfriendly b/augur_venv/bin/humanfriendly new file mode 100755 index 0000000000..f0e4701aa4 --- /dev/null +++ b/augur_venv/bin/humanfriendly @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'humanfriendly==4.18','console_scripts','humanfriendly' +__requires__ = 'humanfriendly==4.18' +import re +import sys + +from humanfriendly.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/insight_worker_start b/augur_venv/bin/insight_worker_start new file mode 100755 index 0000000000..c33d563cd1 --- /dev/null +++ b/augur_venv/bin/insight_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'insight-worker','console_scripts','insight_worker_start' +__requires__ = 'insight-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('insight-worker', 'console_scripts', 'insight_worker_start')() + ) diff --git a/augur_venv/bin/ipdb3 b/augur_venv/bin/ipdb3 new file mode 100755 index 0000000000..65d5e9335e --- /dev/null +++ b/augur_venv/bin/ipdb3 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'ipdb==0.12.2','console_scripts','ipdb3' +__requires__ = 'ipdb==0.12.2' +import re +import sys + +from ipdb.__main__ import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/iptest b/augur_venv/bin/iptest new file mode 100755 index 0000000000..68c8865734 --- /dev/null +++ b/augur_venv/bin/iptest @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','iptest' +__requires__ = 'ipython==7.8.0' +import re +import sys + +from IPython.testing.iptestcontroller import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/iptest3 b/augur_venv/bin/iptest3 new file mode 100755 index 0000000000..1ce6c11b52 --- /dev/null +++ b/augur_venv/bin/iptest3 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','iptest3' +__requires__ = 'ipython==7.8.0' +import re +import sys + +from IPython.testing.iptestcontroller import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/ipython b/augur_venv/bin/ipython new file mode 100755 index 0000000000..9ec857d770 --- /dev/null +++ b/augur_venv/bin/ipython @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','ipython' +__requires__ = 'ipython==7.8.0' +import re +import sys + +from IPython import start_ipython + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(start_ipython()) \ No newline at end of file diff --git a/augur_venv/bin/ipython3 b/augur_venv/bin/ipython3 new file mode 100755 index 0000000000..79f71f6c17 --- /dev/null +++ b/augur_venv/bin/ipython3 @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','ipython3' +__requires__ = 'ipython==7.8.0' +import re +import sys + +from IPython import start_ipython + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(start_ipython()) \ No newline at end of file diff --git a/augur_venv/bin/jupyter b/augur_venv/bin/jupyter new file mode 100755 index 0000000000..0bdc525e9b --- /dev/null +++ b/augur_venv/bin/jupyter @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_core.command import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/jupyter-kernel b/augur_venv/bin/jupyter-kernel new file mode 100755 index 0000000000..69ce851d6e --- /dev/null +++ b/augur_venv/bin/jupyter-kernel @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_client.kernelapp import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/jupyter-kernelspec b/augur_venv/bin/jupyter-kernelspec new file mode 100755 index 0000000000..bdfcd6bada --- /dev/null +++ b/augur_venv/bin/jupyter-kernelspec @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_client.kernelspecapp import KernelSpecApp + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(KernelSpecApp.launch_instance()) diff --git a/augur_venv/bin/jupyter-migrate b/augur_venv/bin/jupyter-migrate new file mode 100755 index 0000000000..56d6adc4aa --- /dev/null +++ b/augur_venv/bin/jupyter-migrate @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_core.migrate import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/jupyter-run b/augur_venv/bin/jupyter-run new file mode 100755 index 0000000000..8bc8c12ac0 --- /dev/null +++ b/augur_venv/bin/jupyter-run @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_client.runapp import RunApp + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(RunApp.launch_instance()) diff --git a/augur_venv/bin/jupyter-troubleshoot b/augur_venv/bin/jupyter-troubleshoot new file mode 100755 index 0000000000..59a10f4c1e --- /dev/null +++ b/augur_venv/bin/jupyter-troubleshoot @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from jupyter_core.troubleshoot import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/linux_badge_worker_start b/augur_venv/bin/linux_badge_worker_start new file mode 100755 index 0000000000..396a035aef --- /dev/null +++ b/augur_venv/bin/linux_badge_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'linux-badge-worker','console_scripts','linux_badge_worker_start' +__requires__ = 'linux-badge-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('linux-badge-worker', 'console_scripts', 'linux_badge_worker_start')() + ) diff --git a/augur_venv/bin/mako-render b/augur_venv/bin/mako-render new file mode 100755 index 0000000000..aec8b8ae4c --- /dev/null +++ b/augur_venv/bin/mako-render @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'Mako==1.1.0','console_scripts','mako-render' +__requires__ = 'Mako==1.1.0' +import re +import sys + +from mako.cmd import cmdline + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(cmdline()) \ No newline at end of file diff --git a/augur_venv/bin/metric_status_worker_start b/augur_venv/bin/metric_status_worker_start new file mode 100755 index 0000000000..aff9baedef --- /dev/null +++ b/augur_venv/bin/metric_status_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'metric-status-worker','console_scripts','metric_status_worker_start' +__requires__ = 'metric-status-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('metric-status-worker', 'console_scripts', 'metric_status_worker_start')() + ) diff --git a/augur_venv/bin/pip b/augur_venv/bin/pip new file mode 100755 index 0000000000..74015cea09 --- /dev/null +++ b/augur_venv/bin/pip @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/pip3 b/augur_venv/bin/pip3 new file mode 100755 index 0000000000..74015cea09 --- /dev/null +++ b/augur_venv/bin/pip3 @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/pip3.7 b/augur_venv/bin/pip3.7 new file mode 100755 index 0000000000..74015cea09 --- /dev/null +++ b/augur_venv/bin/pip3.7 @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/pipreqs b/augur_venv/bin/pipreqs new file mode 100755 index 0000000000..d2f71aeb39 --- /dev/null +++ b/augur_venv/bin/pipreqs @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from pipreqs.pipreqs import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/pull_request_worker_start b/augur_venv/bin/pull_request_worker_start new file mode 100755 index 0000000000..0a16fb713b --- /dev/null +++ b/augur_venv/bin/pull_request_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'pull-request-worker','console_scripts','pull_request_worker_start' +__requires__ = 'pull-request-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('pull-request-worker', 'console_scripts', 'pull_request_worker_start')() + ) diff --git a/augur_venv/bin/py.test b/augur_venv/bin/py.test new file mode 100755 index 0000000000..09cd6d2915 --- /dev/null +++ b/augur_venv/bin/py.test @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'pytest==5.1.2','console_scripts','py.test' +__requires__ = 'pytest==5.1.2' +import re +import sys + +from pytest import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pybabel b/augur_venv/bin/pybabel new file mode 100755 index 0000000000..c0e2a52c3d --- /dev/null +++ b/augur_venv/bin/pybabel @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from babel.messages.frontend import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/pygmentize b/augur_venv/bin/pygmentize new file mode 100755 index 0000000000..9005bc132a --- /dev/null +++ b/augur_venv/bin/pygmentize @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'Pygments==2.4.2','console_scripts','pygmentize' +__requires__ = 'Pygments==2.4.2' +import re +import sys + +from pygments.cmdline import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pyjwt b/augur_venv/bin/pyjwt new file mode 100755 index 0000000000..36a472b24e --- /dev/null +++ b/augur_venv/bin/pyjwt @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'PyJWT==1.7.1','console_scripts','pyjwt' +__requires__ = 'PyJWT==1.7.1' +import re +import sys + +from jwt.__main__ import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pytest b/augur_venv/bin/pytest new file mode 100755 index 0000000000..772a6d314d --- /dev/null +++ b/augur_venv/bin/pytest @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'pytest==5.1.2','console_scripts','pytest' +__requires__ = 'pytest==5.1.2' +import re +import sys + +from pytest import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/python b/augur_venv/bin/python new file mode 120000 index 0000000000..940bee389a --- /dev/null +++ b/augur_venv/bin/python @@ -0,0 +1 @@ +python3.7 \ No newline at end of file diff --git a/augur_venv/bin/python-config b/augur_venv/bin/python-config new file mode 100755 index 0000000000..4699164f9b --- /dev/null +++ b/augur_venv/bin/python-config @@ -0,0 +1,78 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python + +import sys +import getopt +import sysconfig + +valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', + 'ldflags', 'help'] + +if sys.version_info >= (3, 2): + valid_opts.insert(-1, 'extension-suffix') + valid_opts.append('abiflags') +if sys.version_info >= (3, 3): + valid_opts.append('configdir') + + +def exit_with_usage(code=1): + sys.stderr.write("Usage: {0} [{1}]\n".format( + sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) + sys.exit(code) + +try: + opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) +except getopt.error: + exit_with_usage() + +if not opts: + exit_with_usage() + +pyver = sysconfig.get_config_var('VERSION') +getvar = sysconfig.get_config_var + +opt_flags = [flag for (flag, val) in opts] + +if '--help' in opt_flags: + exit_with_usage(code=0) + +for opt in opt_flags: + if opt == '--prefix': + print(sysconfig.get_config_var('prefix')) + + elif opt == '--exec-prefix': + print(sysconfig.get_config_var('exec_prefix')) + + elif opt in ('--includes', '--cflags'): + flags = ['-I' + sysconfig.get_path('include'), + '-I' + sysconfig.get_path('platinclude')] + if opt == '--cflags': + flags.extend(getvar('CFLAGS').split()) + print(' '.join(flags)) + + elif opt in ('--libs', '--ldflags'): + abiflags = getattr(sys, 'abiflags', '') + libs = ['-lpython' + pyver + abiflags] + libs += getvar('LIBS').split() + libs += getvar('SYSLIBS').split() + # add the prefix/lib/pythonX.Y/config dir, but only if there is no + # shared library in prefix/lib/. + if opt == '--ldflags': + if not getvar('Py_ENABLE_SHARED'): + libs.insert(0, '-L' + getvar('LIBPL')) + if not getvar('PYTHONFRAMEWORK'): + libs.extend(getvar('LINKFORSHARED').split()) + print(' '.join(libs)) + + elif opt == '--extension-suffix': + ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') + if ext_suffix is None: + ext_suffix = sysconfig.get_config_var('SO') + print(ext_suffix) + + elif opt == '--abiflags': + if not getattr(sys, 'abiflags', None): + exit_with_usage() + print(sys.abiflags) + + elif opt == '--configdir': + print(sysconfig.get_config_var('LIBPL')) diff --git a/augur_venv/bin/python3 b/augur_venv/bin/python3 new file mode 120000 index 0000000000..940bee389a --- /dev/null +++ b/augur_venv/bin/python3 @@ -0,0 +1 @@ +python3.7 \ No newline at end of file diff --git a/augur_venv/bin/python3.7 b/augur_venv/bin/python3.7 new file mode 100755 index 0000000000000000000000000000000000000000..a0bda459a88ae837c98d297aa70408e7becbad64 GIT binary patch literal 12552 zcmeI2&rcIU6vwB6(kOv~2Y<%~gHaQARX~U_+9E}Ws32gBiJ5Hel5T9b&F(hPc;RBA z2_~HI;-BEbg9p7C{{iF4s|Pi5;17_4_4{^b%eDpX#`n_KnfK<+o7vB7FP-;!bK_5k z5V1BPmiGuDdZ4MjLOc^m^n^G9oq$R?oxYiQn7MbCyp0lTG`F=V&vOJyIhT1b*BIi@ zPd570@&bDk*p6sd!%}+YlD8GxoNwhM9tOkvRS4M)(k_;xwv?_{$+~q{bG|i|Z=Z?? z?QlX|nzgN9wtyvxpyvZMLJ{i)%|dpk9G=T>HHGJNMQs664~uu0;|raa*g`TOv@ z@I&xLYsb+ZrU4~MWsji6$LB-iWf=6%end-Wa{xLGC87MG(pl|xUT;+%nirKW7)fX+ zRIj*>Ua+!yu3E^!COHPBeSFCO{`&O%$i}k(TwA&XUlK~|i!S_1pw#zSwtb47 zLq9=dO3vWW*r)ytP` zp$$Zr4V>F8H=qscYKp(kNaT59o8NJKu`RaX8$6mes)4hWMKI(vlz8QFPV|19RW_YJ z3lm@hOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz4U|4m?i;>C|g>%^ee zPgmSiFHe|g(zCVxd9 +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing HTML. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates (X)HTML documents from standalone reStructuredText ' + 'sources. ' + default_description) + +publish_cmdline(writer_name='html', description=description) diff --git a/augur_venv/bin/rst2html4.py b/augur_venv/bin/rst2html4.py new file mode 100755 index 0000000000..33f905e1b7 --- /dev/null +++ b/augur_venv/bin/rst2html4.py @@ -0,0 +1,26 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2html4.py 7994 2016-12-10 17:41:45Z milde $ +# Author: David Goodger +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing (X)HTML. + +The output conforms to XHTML 1.0 transitional +and almost to HTML 4.01 transitional (except for closing empty tags). +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates (X)HTML documents from standalone reStructuredText ' + 'sources. ' + default_description) + +publish_cmdline(writer_name='html4', description=description) diff --git a/augur_venv/bin/rst2html5.py b/augur_venv/bin/rst2html5.py new file mode 100755 index 0000000000..7e01f7674d --- /dev/null +++ b/augur_venv/bin/rst2html5.py @@ -0,0 +1,35 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf8 -*- +# :Copyright: © 2015 Günter Milde. +# :License: Released under the terms of the `2-Clause BSD license`_, in short: +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. +# This file is offered as-is, without any warranty. +# +# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# +# Revision: $Revision: 7847 $ +# Date: $Date: 2015-03-17 18:30:47 +0100 (Di, 17. Mär 2015) $ + +""" +A minimal front end to the Docutils Publisher, producing HTML 5 documents. + +The output also conforms to XHTML 1.0 transitional +(except for the doctype declaration). +""" + +try: + import locale # module missing in Jython + locale.setlocale(locale.LC_ALL, '') +except locale.Error: + pass + +from docutils.core import publish_cmdline, default_description + +description = (u'Generates HTML 5 documents from standalone ' + u'reStructuredText sources ' + + default_description) + +publish_cmdline(writer_name='html5', description=description) diff --git a/augur_venv/bin/rst2latex.py b/augur_venv/bin/rst2latex.py new file mode 100755 index 0000000000..b9dabc4ae2 --- /dev/null +++ b/augur_venv/bin/rst2latex.py @@ -0,0 +1,26 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2latex.py 5905 2009-04-16 12:04:49Z milde $ +# Author: David Goodger +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing LaTeX. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline + +description = ('Generates LaTeX documents from standalone reStructuredText ' + 'sources. ' + 'Reads from (default is stdin) and writes to ' + ' (default is stdout). See ' + ' for ' + 'the full reference.') + +publish_cmdline(writer_name='latex', description=description) diff --git a/augur_venv/bin/rst2man.py b/augur_venv/bin/rst2man.py new file mode 100755 index 0000000000..8f979939c7 --- /dev/null +++ b/augur_venv/bin/rst2man.py @@ -0,0 +1,26 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# Author: +# Contact: grubert@users.sf.net +# Copyright: This module has been placed in the public domain. + +""" +man.py +====== + +This module provides a simple command line interface that uses the +man page writer to output from ReStructuredText source. +""" + +import locale +try: + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description +from docutils.writers import manpage + +description = ("Generates plain unix manual documents. " + default_description) + +publish_cmdline(writer=manpage.Writer(), description=description) diff --git a/augur_venv/bin/rst2odt.py b/augur_venv/bin/rst2odt.py new file mode 100755 index 0000000000..12d115d892 --- /dev/null +++ b/augur_venv/bin/rst2odt.py @@ -0,0 +1,30 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2odt.py 5839 2009-01-07 19:09:28Z dkuhlman $ +# Author: Dave Kuhlman +# Copyright: This module has been placed in the public domain. + +""" +A front end to the Docutils Publisher, producing OpenOffice documents. +""" + +import sys +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline_to_binary, default_description +from docutils.writers.odf_odt import Writer, Reader + + +description = ('Generates OpenDocument/OpenOffice/ODF documents from ' + 'standalone reStructuredText sources. ' + default_description) + + +writer = Writer() +reader = Reader() +output = publish_cmdline_to_binary(reader=reader, writer=writer, + description=description) + diff --git a/augur_venv/bin/rst2odt_prepstyles.py b/augur_venv/bin/rst2odt_prepstyles.py new file mode 100755 index 0000000000..4ff0861b7b --- /dev/null +++ b/augur_venv/bin/rst2odt_prepstyles.py @@ -0,0 +1,67 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2odt_prepstyles.py 5839 2009-01-07 19:09:28Z dkuhlman $ +# Author: Dave Kuhlman +# Copyright: This module has been placed in the public domain. + +""" +Fix a word-processor-generated styles.odt for odtwriter use: Drop page size +specifications from styles.xml in STYLE_FILE.odt. +""" + +# +# Author: Michael Schutte + +from lxml import etree +import sys +import zipfile +from tempfile import mkstemp +import shutil +import os + +NAMESPACES = { + "style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0", + "fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" +} + +def prepstyle(filename): + + zin = zipfile.ZipFile(filename) + styles = zin.read("styles.xml") + + root = etree.fromstring(styles) + for el in root.xpath("//style:page-layout-properties", + namespaces=NAMESPACES): + for attr in el.attrib: + if attr.startswith("{%s}" % NAMESPACES["fo"]): + del el.attrib[attr] + + tempname = mkstemp() + zout = zipfile.ZipFile(os.fdopen(tempname[0], "w"), "w", + zipfile.ZIP_DEFLATED) + + for item in zin.infolist(): + if item.filename == "styles.xml": + zout.writestr(item, etree.tostring(root)) + else: + zout.writestr(item, zin.read(item.filename)) + + zout.close() + zin.close() + shutil.move(tempname[1], filename) + + +def main(): + args = sys.argv[1:] + if len(args) != 1: + print >> sys.stderr, __doc__ + print >> sys.stderr, "Usage: %s STYLE_FILE.odt\n" % sys.argv[0] + sys.exit(1) + filename = args[0] + prepstyle(filename) + +if __name__ == '__main__': + main() + + +# vim:tw=78:sw=4:sts=4:et: diff --git a/augur_venv/bin/rst2pseudoxml.py b/augur_venv/bin/rst2pseudoxml.py new file mode 100755 index 0000000000..df9948f15c --- /dev/null +++ b/augur_venv/bin/rst2pseudoxml.py @@ -0,0 +1,23 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2pseudoxml.py 4564 2006-05-21 20:44:42Z wiemann $ +# Author: David Goodger +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing pseudo-XML. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates pseudo-XML from standalone reStructuredText ' + 'sources (for testing purposes). ' + default_description) + +publish_cmdline(description=description) diff --git a/augur_venv/bin/rst2s5.py b/augur_venv/bin/rst2s5.py new file mode 100755 index 0000000000..6cfe5d862f --- /dev/null +++ b/augur_venv/bin/rst2s5.py @@ -0,0 +1,24 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2s5.py 4564 2006-05-21 20:44:42Z wiemann $ +# Author: Chris Liechti +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing HTML slides using +the S5 template system. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates S5 (X)HTML slideshow documents from standalone ' + 'reStructuredText sources. ' + default_description) + +publish_cmdline(writer_name='s5', description=description) diff --git a/augur_venv/bin/rst2xetex.py b/augur_venv/bin/rst2xetex.py new file mode 100755 index 0000000000..1cdf54a875 --- /dev/null +++ b/augur_venv/bin/rst2xetex.py @@ -0,0 +1,27 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2xetex.py 7847 2015-03-17 17:30:47Z milde $ +# Author: Guenter Milde +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline + +description = ('Generates LaTeX documents from standalone reStructuredText ' + 'sources for compilation with the Unicode-aware TeX variants ' + 'XeLaTeX or LuaLaTeX. ' + 'Reads from (default is stdin) and writes to ' + ' (default is stdout). See ' + ' for ' + 'the full reference.') + +publish_cmdline(writer_name='xetex', description=description) diff --git a/augur_venv/bin/rst2xml.py b/augur_venv/bin/rst2xml.py new file mode 100755 index 0000000000..a1be2fb700 --- /dev/null +++ b/augur_venv/bin/rst2xml.py @@ -0,0 +1,23 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rst2xml.py 4564 2006-05-21 20:44:42Z wiemann $ +# Author: David Goodger +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing Docutils XML. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates Docutils-native XML from standalone ' + 'reStructuredText sources. ' + default_description) + +publish_cmdline(writer_name='xml', description=description) diff --git a/augur_venv/bin/rstpep2html.py b/augur_venv/bin/rstpep2html.py new file mode 100755 index 0000000000..a5f3adf1cd --- /dev/null +++ b/augur_venv/bin/rstpep2html.py @@ -0,0 +1,25 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +# $Id: rstpep2html.py 4564 2006-05-21 20:44:42Z wiemann $ +# Author: David Goodger +# Copyright: This module has been placed in the public domain. + +""" +A minimal front end to the Docutils Publisher, producing HTML from PEP +(Python Enhancement Proposal) documents. +""" + +try: + import locale + locale.setlocale(locale.LC_ALL, '') +except: + pass + +from docutils.core import publish_cmdline, default_description + + +description = ('Generates (X)HTML from reStructuredText-format PEP files. ' + + default_description) + +publish_cmdline(reader_name='pep', writer_name='pep_html', + description=description) diff --git a/augur_venv/bin/sphinx-apidoc b/augur_venv/bin/sphinx-apidoc new file mode 100755 index 0000000000..43e693d6c5 --- /dev/null +++ b/augur_venv/bin/sphinx-apidoc @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from sphinx.ext.apidoc import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/sphinx-autogen b/augur_venv/bin/sphinx-autogen new file mode 100755 index 0000000000..1a42c292a9 --- /dev/null +++ b/augur_venv/bin/sphinx-autogen @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from sphinx.ext.autosummary.generate import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/sphinx-build b/augur_venv/bin/sphinx-build new file mode 100755 index 0000000000..630cb2d152 --- /dev/null +++ b/augur_venv/bin/sphinx-build @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from sphinx.cmd.build import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/sphinx-quickstart b/augur_venv/bin/sphinx-quickstart new file mode 100755 index 0000000000..1462540042 --- /dev/null +++ b/augur_venv/bin/sphinx-quickstart @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from sphinx.cmd.quickstart import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/bin/tldextract b/augur_venv/bin/tldextract new file mode 100755 index 0000000000..4e36552ccf --- /dev/null +++ b/augur_venv/bin/tldextract @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python +# -*- coding: utf-8 -*- +# EASY-INSTALL-ENTRY-SCRIPT: 'tldextract==2.2.1','console_scripts','tldextract' +__requires__ = 'tldextract==2.2.1' +import re +import sys + +from tldextract.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/value_worker_start b/augur_venv/bin/value_worker_start new file mode 100755 index 0000000000..c298f83a09 --- /dev/null +++ b/augur_venv/bin/value_worker_start @@ -0,0 +1,12 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# EASY-INSTALL-ENTRY-SCRIPT: 'value-worker','console_scripts','value_worker_start' +__requires__ = 'value-worker' +import re +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit( + load_entry_point('value-worker', 'console_scripts', 'value_worker_start')() + ) diff --git a/augur_venv/bin/vba_extract.py b/augur_venv/bin/vba_extract.py new file mode 100755 index 0000000000..d24aac80a9 --- /dev/null +++ b/augur_venv/bin/vba_extract.py @@ -0,0 +1,62 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 + +############################################################################## +# +# vba_extract - A simple utility to extract a vbaProject.bin binary from an +# Excel 2007+ xlsm file for insertion into an XlsxWriter file. +# +# Copyright 2013-2019, John McNamara, jmcnamara@cpan.org +# +import sys +from zipfile import ZipFile +from zipfile import BadZipfile + +# The VBA project file we want to extract. +vba_filename = 'vbaProject.bin' + +# Get the xlsm file name from the commandline. +if len(sys.argv) > 1: + xlsm_file = sys.argv[1] +else: + print("\nUtility to extract a vbaProject.bin binary from an Excel 2007+ " + "xlsm macro file for insertion into an XlsxWriter file." + "\n" + "See: https://xlsxwriter.readthedocs.io/working_with_macros.html\n" + "\n" + "Usage: vba_extract file.xlsm\n") + exit() + +try: + # Open the Excel xlsm file as a zip file. + xlsm_zip = ZipFile(xlsm_file, 'r') + + # Read the xl/vbaProject.bin file. + vba_data = xlsm_zip.read('xl/' + vba_filename) + + # Write the vba data to a local file. + vba_file = open(vba_filename, "wb") + vba_file.write(vba_data) + vba_file.close() + +except IOError as e: + print("File error: %s" % str(e)) + exit() + +except KeyError as e: + # Usually when there isn't a xl/vbaProject.bin member in the file. + print("File error: %s" % str(e)) + print("File may not be an Excel xlsm macro file: '%s'" % xlsm_file) + exit() + +except BadZipfile as e: + # Usually if the file is an xls file and not an xlsm file. + print("File error: %s: '%s'" % (str(e), xlsm_file)) + print("File may not be an Excel xlsm macro file.") + exit() + +except Exception as e: + # Catch any other exceptions. + print("File error: %s" % str(e)) + exit() + +print("Extracted: %s" % vba_filename) diff --git a/augur_venv/bin/wheel b/augur_venv/bin/wheel new file mode 100755 index 0000000000..aefa4f8898 --- /dev/null +++ b/augur_venv/bin/wheel @@ -0,0 +1,10 @@ +#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 +# -*- coding: utf-8 -*- +import re +import sys + +from wheel.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/augur_venv/include/python3.7m b/augur_venv/include/python3.7m new file mode 120000 index 0000000000..98003c0cec --- /dev/null +++ b/augur_venv/include/python3.7m @@ -0,0 +1 @@ +/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m \ No newline at end of file diff --git a/augur_venv/share/jupyter/kernels/python3/kernel.json b/augur_venv/share/jupyter/kernels/python3/kernel.json new file mode 100644 index 0000000000..db1f086351 --- /dev/null +++ b/augur_venv/share/jupyter/kernels/python3/kernel.json @@ -0,0 +1,11 @@ +{ + "argv": [ + "python", + "-m", + "ipykernel_launcher", + "-f", + "{connection_file}" + ], + "display_name": "Python 3", + "language": "python" +} \ No newline at end of file diff --git a/augur_venv/share/jupyter/kernels/python3/logo-32x32.png b/augur_venv/share/jupyter/kernels/python3/logo-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..be81330765764699553aa4fbaf0e9fc27c20c6d2 GIT binary patch literal 1084 zcmV-C1jGA@P)enw2jbMszQuf3kC$K7$S;4l;TgSRfzha5>pgWAEY9PR!IdB zTSZXtp`b02h)|SJ3#AW|AKF?KgNSQ|Sg=ZCgHaT%F`4#g>iG8;N__GBLh26(2qOGO9};SPeUDLyV^m!K($s69;fB|`Ui z{nqhFk+};I5Vb+1*IC+gaNEtF()dX{`(!1eUb?=>+~p#JOj-qUi2^^^uzi1p(thMz&#&LJq>Cf)~tBhxq*;Npy$=mheX>2t4(OR zWk&s74VR$m@6rlD?Nud*cEGO2$>|mV&tzP1%j+W-N_;a>$_%)&Yn?|hX(50fV5s); zkLsKLb20?nJo-eIQ&vLU?~T?v{=JUtFa!EFC;;*i2@lY(#8Ur2b{` z!nc_6C42;g?mDnyRp9)U84ZxUv=Ja10XDYX;KZ|EPJ`h_&;S{#m9Q!a*xC#MiI?P; zx4sNs;+Uif!Da~pAQU}S)ww^M;qb(^FD`~`s1D2+foklsECF&ZZKas%kF~bU-M9bY zuhs+V2CzISGy`A&Lkq;MkgWkjD)R)1WqC_*Tx45LdH=lV+}XPaAFS+wus(ZG#IuZp zEE@YdBSMkKnX~3J?j7u_^kl&mQ+7t_i^t4YG6X0cS+J89bl~_Igc~wh(?=P_08}Iv z0NHqkz|x<~Z;3paR=+czhC^#TYlWDdd@Rc|#cCUooxt4edl>=;-neznjL)SlXtdOh z=2NAO%Gxj%BLM->i|(q=eePLs=%wD>*F6312}yTRxn%!IzZtmkN`YjQBMNkckc4h;pSXO%%?N2y_ccz zS`INlItXC6DR;umS}Mn43NzsR7MS0Sf|rrv1n7UvdO9UC3&XB+{A~zNMyyXY@lF_q zps;z-9S*u(m1{=;T?YYxd%vmwj5N7<3lv^}?EK6DlWbFPZoBI|w5zEE06;(VF2nD? z_QUyZi0eRG2jDb-NyvSR5{_bd`5o6W`WOCh1>4`s79R;zVm_k)0000kjcw83I)rwURf9H)0d)l3>^8*`$3&wplXaSnv^ouL zxig617>J8x{$<2zvZ44vm&sPJz*Z;|)^sj29S|e(QD`@&rR&E%&(A;Zx#ym9?>Xnb z=k|6x#=dRS_rB-ex99mi&+qvXHKxY@^N`8h{N|r@TsA(& zsCpk!BK%oN(i-QUbD69cd?H!sn{mG-Lrs4l70Gd-TRSnnlw<)m#)CQ1364@U( zb1huc+%2C?f zYjwl_PTT;XJ$4oVU=Be51c+U`UEX_ls%aSHu0jnXMCH=*+Sd}C2irp2UqB=Z0E)N85&+GM z>q^`|nwHj#MQ}!_hFxHI0P?d05b<<^{$@L)xRXP$*7NMe_Al`SAe_UPXbALJOH3_5 zcM?1d0-}ThP+N;&R(k{$P!RUyBLuGx7u*NjI0EqWx*LBO^)ny+&f^)CC}~0x8ViOeXmOp`hB@Wk%DqXy3C1Q0?$fKnaUFPm1OP-ZjVK`deF} zSeAF2mylo&RQ`&~-?2v|r4t6AY0JJPRN1JijUXW&kBk6^2Cvr^I{u5UuqP$>16T2K z9R$k@xromL3Y>lI8J_*t?K0<)3neE)OPIZA`y$|W32O|S;>(;-_BoaG7O_=2G z6D)9yzzx@Wf#9y!>3jH(JLX0Lz*6}#sWZF@h^aPF)_fq;^c^8JPiTh*0JRcGe<2b8 zN_@jF0rBt^lR=9@fPBV9TT3%D0)}bdo{O3TaO38^?3k0H{bUT-qpE!%+$xpS2LPf1an-UJ2DJ9KqouI6R;TMiW;X0gzCw zHO|Y+R^XVXy4>IM=$idVj4jUz?GhXz)&RZ6C=nuAOFRF5GYcGpaQ8++^bVf8D~Ysh zasY5*fBszU=;2(eHKTx{cJgCCqK3OyNG?6L{qEzi@F-xtJB056lt^D=Mgd{1M;|3o zptQ9-Tf6}9DG0x>)iWA;*7d!}f34XL)z1YaJw+(tZvmBs7Qne4&B4c^71J}j0Cl!mHAtQyc|{3a zzhEhE=-#}lmuK6SVomEdD6U096Gc<`?9IYNt09igBXq$&uNwIPk|#@Za%kz^ysDSy z+SWt37r+OM+U|uhJI|3tadcq`kq(&o0OEv1c4+!|*N<=iE&E$ngIs6G>;UsEYRUoH z*N{CGAkP{BAQ=ioDsa;2iU)Z9+n0m7&G0!|IACWkdlBI1w@S4<6a_#XeAP z1@TTJt)oc(Zd&9NrG)FXraO%+ph_!V8AqA`#S;PpD4=AwE!!e+(HZRH`J4Q`%$PKn zL#RLx{&wZdvT~>OrXG{ynQ!)hTxeLDW{is=avgT_Q@X{_ryQSRf-z;cCzzZ%57>p+XNOwhgQWFSDdeo<;8g((CJEj(Z4)c6IEc3%k9{YIG zk+*m8hahOo-7ycwG7kU%o^1X(sCP!|<+23tKd4KhH8=|#dkr8hdCPys`Kq?qW`a42rV{8owiaTo2X%UpUcJedmjJmB_0Mh> zDfdCyN&K%dp1k=ojE<}Z_*K9@aFMV5@X-t5FOkM$vasuX>}!EgFkb%DENHq8U>%?f zGQUv=A_?Fk1g}BS5Ab;i4xv&G$^7TeU}{W_sWCMsdHfgT%>1XE)oy_r_v^xE0!1Xu0MMTGSD&7Wc~tOr^TIfDD1xHRQZC-aExy$>Q8SU0!dK zht+w+eENF?4e#moFay(N26HQv^a#pUs80X}xb`{J0gEdzh!iO=e|r=8=ll(ew|9`N zAGdc8E11K@$FA;S{%Zt3|1_Upc*u2)+z?3drK3`8B@7hYQt}EVK2tW0&%y|~C!2?F z`5t2z8fsDvg4d+sxmG5EQn{ECHOd^Xyi+WzQO`mcp4A9d-%b;O=pjCcLs}yxjwFYx3zM=HOn(5I> zc&IIq2_e(SzXk`>!aMo?%t8J*2W(o~d)L6hsWpf?H7(|%6!}rgQ$u|Pd#CeLI0z}y zyOF~%B~T$Rjug}M%uJ)lb^n^eOx`P(}=yMru8vR7fj(5HvZw zv#O!_%Yn48inO~Fl8F0WsLs+WEn3k_-iVy3>Jzzn3a zm?`x&fD+K9%J5!SqHOPH$|U`z1@ zmb|MiBe);#9`2X3c&ts7a7ymdk-E;E$|#8cqw46wmtH1EBs2sIc;^!t=BX0+jZy4SV4;q9r;R}uYa zS*}l3H&^2zutJ?0KBR=4Za<5YFkDy&3zN4`Av$jR$p9P*bzIqr+ibvi8Ym4iEdC<< zCOzsvf*-W77A0i8FJZLY(7#o!+J;sEw#XZJS6SPdtJ!Q%I&@h~t(Xmj$LIT){RePY JU6%?7000JG`xgKJ literal 0 HcmV?d00001 diff --git a/frontend/src/components/charts/HorizontalBarChart.vue b/frontend/src/components/charts/HorizontalBarChart.vue index 1113b396e9..3dc415d730 100755 --- a/frontend/src/components/charts/HorizontalBarChart.vue +++ b/frontend/src/components/charts/HorizontalBarChart.vue @@ -2,20 +2,20 @@
-
+
- +
- +
- -
+ +
-
+
diff --git a/frontend/src/styles/augur.styl b/frontend/src/styles/augur.styl index e5d0a8c26b..976d2a59e1 100755 --- a/frontend/src/styles/augur.styl +++ b/frontend/src/styles/augur.styl @@ -535,11 +535,11 @@ header .search display: none !important /*new class*/ -.horizontalBarChartDiv { +/*.horizontalBarChartDiv { position: relative; top: -0px !important; transform: translateY(-0.45rem); -} +}*/ /* new class */ .insightChartDiv { position: relative; From 14402b9acdc9ae870c8c54d3c413dd9aa9769650 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sun, 3 Nov 2019 15:59:26 +0000 Subject: [PATCH 005/250] somebody committed their virutal environment! --- augur_venv/bin/activate | 84 --------------- augur_venv/bin/activate.csh | 55 ---------- augur_venv/bin/activate.fish | 102 ------------------ augur_venv/bin/activate.ps1 | 60 ----------- augur_venv/bin/activate.xsh | 46 -------- augur_venv/bin/activate_this.py | 46 -------- augur_venv/bin/alembic | 12 --- augur_venv/bin/augur | 12 --- augur_venv/bin/augur_run | 12 --- augur_venv/bin/chardetect | 12 --- augur_venv/bin/coloredlogs | 12 --- augur_venv/bin/cygdb | 12 --- augur_venv/bin/cython | 12 --- augur_venv/bin/cythonize | 12 --- augur_venv/bin/easy_install | 12 --- augur_venv/bin/easy_install-3.6 | 12 --- augur_venv/bin/easy_install-3.7 | 10 -- augur_venv/bin/f2py | 12 --- augur_venv/bin/f2py3 | 12 --- augur_venv/bin/f2py3.7 | 12 --- augur_venv/bin/facade_worker_start | 12 --- augur_venv/bin/flask | 12 --- augur_venv/bin/github_worker_start | 12 --- augur_venv/bin/gunicorn | 12 --- augur_venv/bin/gunicorn_paster | 12 --- augur_venv/bin/humanfriendly | 12 --- augur_venv/bin/insight_worker_start | 12 --- augur_venv/bin/ipdb3 | 12 --- augur_venv/bin/iptest | 12 --- augur_venv/bin/iptest3 | 12 --- augur_venv/bin/ipython | 12 --- augur_venv/bin/ipython3 | 12 --- augur_venv/bin/jupyter | 10 -- augur_venv/bin/jupyter-kernel | 10 -- augur_venv/bin/jupyter-kernelspec | 10 -- augur_venv/bin/jupyter-migrate | 10 -- augur_venv/bin/jupyter-run | 10 -- augur_venv/bin/jupyter-troubleshoot | 10 -- augur_venv/bin/linux_badge_worker_start | 12 --- augur_venv/bin/mako-render | 12 --- augur_venv/bin/metric_status_worker_start | 12 --- augur_venv/bin/pip | 10 -- augur_venv/bin/pip3 | 10 -- augur_venv/bin/pip3.7 | 10 -- augur_venv/bin/pipreqs | 10 -- augur_venv/bin/pull_request_worker_start | 12 --- augur_venv/bin/py.test | 12 --- augur_venv/bin/pybabel | 10 -- augur_venv/bin/pygmentize | 12 --- augur_venv/bin/pyjwt | 12 --- augur_venv/bin/pytest | 12 --- augur_venv/bin/python | 1 - augur_venv/bin/python-config | 78 -------------- augur_venv/bin/python3 | 1 - augur_venv/bin/python3.7 | Bin 12552 -> 0 bytes augur_venv/bin/repo_info_worker_start | 12 --- augur_venv/bin/rst2html.py | 23 ---- augur_venv/bin/rst2html4.py | 26 ----- augur_venv/bin/rst2html5.py | 35 ------ augur_venv/bin/rst2latex.py | 26 ----- augur_venv/bin/rst2man.py | 26 ----- augur_venv/bin/rst2odt.py | 30 ------ augur_venv/bin/rst2odt_prepstyles.py | 67 ------------ augur_venv/bin/rst2pseudoxml.py | 23 ---- augur_venv/bin/rst2s5.py | 24 ----- augur_venv/bin/rst2xetex.py | 27 ----- augur_venv/bin/rst2xml.py | 23 ---- augur_venv/bin/rstpep2html.py | 25 ----- augur_venv/bin/sphinx-apidoc | 10 -- augur_venv/bin/sphinx-autogen | 10 -- augur_venv/bin/sphinx-build | 10 -- augur_venv/bin/sphinx-quickstart | 10 -- augur_venv/bin/tldextract | 12 --- augur_venv/bin/value_worker_start | 12 --- augur_venv/bin/vba_extract.py | 62 ----------- augur_venv/bin/wheel | 10 -- augur_venv/include/python3.7m | 1 - .../share/jupyter/kernels/python3/kernel.json | 11 -- .../jupyter/kernels/python3/logo-32x32.png | Bin 1084 -> 0 bytes .../jupyter/kernels/python3/logo-64x64.png | Bin 2180 -> 0 bytes augur_venv/share/man/man1/ipython.1.gz | Bin 1039 -> 0 bytes 81 files changed, 1504 deletions(-) delete mode 100644 augur_venv/bin/activate delete mode 100644 augur_venv/bin/activate.csh delete mode 100644 augur_venv/bin/activate.fish delete mode 100644 augur_venv/bin/activate.ps1 delete mode 100644 augur_venv/bin/activate.xsh delete mode 100644 augur_venv/bin/activate_this.py delete mode 100755 augur_venv/bin/alembic delete mode 100755 augur_venv/bin/augur delete mode 100755 augur_venv/bin/augur_run delete mode 100755 augur_venv/bin/chardetect delete mode 100755 augur_venv/bin/coloredlogs delete mode 100755 augur_venv/bin/cygdb delete mode 100755 augur_venv/bin/cython delete mode 100755 augur_venv/bin/cythonize delete mode 100755 augur_venv/bin/easy_install delete mode 100755 augur_venv/bin/easy_install-3.6 delete mode 100755 augur_venv/bin/easy_install-3.7 delete mode 100755 augur_venv/bin/f2py delete mode 100755 augur_venv/bin/f2py3 delete mode 100755 augur_venv/bin/f2py3.7 delete mode 100755 augur_venv/bin/facade_worker_start delete mode 100755 augur_venv/bin/flask delete mode 100755 augur_venv/bin/github_worker_start delete mode 100755 augur_venv/bin/gunicorn delete mode 100755 augur_venv/bin/gunicorn_paster delete mode 100755 augur_venv/bin/humanfriendly delete mode 100755 augur_venv/bin/insight_worker_start delete mode 100755 augur_venv/bin/ipdb3 delete mode 100755 augur_venv/bin/iptest delete mode 100755 augur_venv/bin/iptest3 delete mode 100755 augur_venv/bin/ipython delete mode 100755 augur_venv/bin/ipython3 delete mode 100755 augur_venv/bin/jupyter delete mode 100755 augur_venv/bin/jupyter-kernel delete mode 100755 augur_venv/bin/jupyter-kernelspec delete mode 100755 augur_venv/bin/jupyter-migrate delete mode 100755 augur_venv/bin/jupyter-run delete mode 100755 augur_venv/bin/jupyter-troubleshoot delete mode 100755 augur_venv/bin/linux_badge_worker_start delete mode 100755 augur_venv/bin/mako-render delete mode 100755 augur_venv/bin/metric_status_worker_start delete mode 100755 augur_venv/bin/pip delete mode 100755 augur_venv/bin/pip3 delete mode 100755 augur_venv/bin/pip3.7 delete mode 100755 augur_venv/bin/pipreqs delete mode 100755 augur_venv/bin/pull_request_worker_start delete mode 100755 augur_venv/bin/py.test delete mode 100755 augur_venv/bin/pybabel delete mode 100755 augur_venv/bin/pygmentize delete mode 100755 augur_venv/bin/pyjwt delete mode 100755 augur_venv/bin/pytest delete mode 120000 augur_venv/bin/python delete mode 100755 augur_venv/bin/python-config delete mode 120000 augur_venv/bin/python3 delete mode 100755 augur_venv/bin/python3.7 delete mode 100755 augur_venv/bin/repo_info_worker_start delete mode 100755 augur_venv/bin/rst2html.py delete mode 100755 augur_venv/bin/rst2html4.py delete mode 100755 augur_venv/bin/rst2html5.py delete mode 100755 augur_venv/bin/rst2latex.py delete mode 100755 augur_venv/bin/rst2man.py delete mode 100755 augur_venv/bin/rst2odt.py delete mode 100755 augur_venv/bin/rst2odt_prepstyles.py delete mode 100755 augur_venv/bin/rst2pseudoxml.py delete mode 100755 augur_venv/bin/rst2s5.py delete mode 100755 augur_venv/bin/rst2xetex.py delete mode 100755 augur_venv/bin/rst2xml.py delete mode 100755 augur_venv/bin/rstpep2html.py delete mode 100755 augur_venv/bin/sphinx-apidoc delete mode 100755 augur_venv/bin/sphinx-autogen delete mode 100755 augur_venv/bin/sphinx-build delete mode 100755 augur_venv/bin/sphinx-quickstart delete mode 100755 augur_venv/bin/tldextract delete mode 100755 augur_venv/bin/value_worker_start delete mode 100755 augur_venv/bin/vba_extract.py delete mode 100755 augur_venv/bin/wheel delete mode 120000 augur_venv/include/python3.7m delete mode 100644 augur_venv/share/jupyter/kernels/python3/kernel.json delete mode 100644 augur_venv/share/jupyter/kernels/python3/logo-32x32.png delete mode 100644 augur_venv/share/jupyter/kernels/python3/logo-64x64.png delete mode 100644 augur_venv/share/man/man1/ipython.1.gz diff --git a/augur_venv/bin/activate b/augur_venv/bin/activate deleted file mode 100644 index cd5cdb1fb7..0000000000 --- a/augur_venv/bin/activate +++ /dev/null @@ -1,84 +0,0 @@ -# This file must be used with "source bin/activate" *from bash* -# you cannot run it directly - - -if [ "${BASH_SOURCE-}" = "$0" ]; then - echo "You must source this script: \$ source $0" >&2 - exit 33 -fi - -deactivate () { - unset -f pydoc >/dev/null 2>&1 - - # reset old environment variables - # ! [ -z ${VAR+_} ] returns true if VAR is declared at all - if ! [ -z "${_OLD_VIRTUAL_PATH:+_}" ] ; then - PATH="$_OLD_VIRTUAL_PATH" - export PATH - unset _OLD_VIRTUAL_PATH - fi - if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then - PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME" - export PYTHONHOME - unset _OLD_VIRTUAL_PYTHONHOME - fi - - # This should detect bash and zsh, which have a hash command that must - # be called to get it to forget past commands. Without forgetting - # past commands the $PATH changes we made may not be respected - if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then - hash -r 2>/dev/null - fi - - if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then - PS1="$_OLD_VIRTUAL_PS1" - export PS1 - unset _OLD_VIRTUAL_PS1 - fi - - unset VIRTUAL_ENV - if [ ! "${1-}" = "nondestructive" ] ; then - # Self destruct! - unset -f deactivate - fi -} - -# unset irrelevant variables -deactivate nondestructive - -VIRTUAL_ENV="/Users/carolynperniciaro/augur/augur_venv" -export VIRTUAL_ENV - -_OLD_VIRTUAL_PATH="$PATH" -PATH="$VIRTUAL_ENV/bin:$PATH" -export PATH - -# unset PYTHONHOME if set -if ! [ -z "${PYTHONHOME+_}" ] ; then - _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME" - unset PYTHONHOME -fi - -if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then - _OLD_VIRTUAL_PS1="${PS1-}" - if [ "x" != x ] ; then - PS1="${PS1-}" - else - PS1="(`basename \"$VIRTUAL_ENV\"`) ${PS1-}" - fi - export PS1 -fi - -# Make sure to unalias pydoc if it's already there -alias pydoc 2>/dev/null >/dev/null && unalias pydoc || true - -pydoc () { - python -m pydoc "$@" -} - -# This should detect bash and zsh, which have a hash command that must -# be called to get it to forget past commands. Without forgetting -# past commands the $PATH changes we made may not be respected -if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then - hash -r 2>/dev/null -fi diff --git a/augur_venv/bin/activate.csh b/augur_venv/bin/activate.csh deleted file mode 100644 index be1e88ec10..0000000000 --- a/augur_venv/bin/activate.csh +++ /dev/null @@ -1,55 +0,0 @@ -# This file must be used with "source bin/activate.csh" *from csh*. -# You cannot run it directly. -# Created by Davide Di Blasi . - -set newline='\ -' - -alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH:q" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT:q" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' - -# Unset irrelevant variables. -deactivate nondestructive - -setenv VIRTUAL_ENV "/Users/carolynperniciaro/augur/augur_venv" - -set _OLD_VIRTUAL_PATH="$PATH:q" -setenv PATH "$VIRTUAL_ENV:q/bin:$PATH:q" - - - -if ("" != "") then - set env_name = "" -else - set env_name = '('"$VIRTUAL_ENV:t:q"') ' -endif - -if ( $?VIRTUAL_ENV_DISABLE_PROMPT ) then - if ( $VIRTUAL_ENV_DISABLE_PROMPT == "" ) then - set do_prompt = "1" - else - set do_prompt = "0" - endif -else - set do_prompt = "1" -endif - -if ( $do_prompt == "1" ) then - # Could be in a non-interactive environment, - # in which case, $prompt is undefined and we wouldn't - # care about the prompt anyway. - if ( $?prompt ) then - set _OLD_VIRTUAL_PROMPT="$prompt:q" - if ( "$prompt:q" =~ *"$newline:q"* ) then - : - else - set prompt = "$env_name:q$prompt:q" - endif - endif -endif - -unset env_name -unset do_prompt - -alias pydoc python -m pydoc - -rehash diff --git a/augur_venv/bin/activate.fish b/augur_venv/bin/activate.fish deleted file mode 100644 index a484e216e3..0000000000 --- a/augur_venv/bin/activate.fish +++ /dev/null @@ -1,102 +0,0 @@ -# This file must be used using `source bin/activate.fish` *within a running fish ( http://fishshell.com ) session*. -# Do not run it directly. - -function _bashify_path -d "Converts a fish path to something bash can recognize" - set fishy_path $argv - set bashy_path $fishy_path[1] - for path_part in $fishy_path[2..-1] - set bashy_path "$bashy_path:$path_part" - end - echo $bashy_path -end - -function _fishify_path -d "Converts a bash path to something fish can recognize" - echo $argv | tr ':' '\n' -end - -function deactivate -d 'Exit virtualenv mode and return to the normal environment.' - # reset old environment variables - if test -n "$_OLD_VIRTUAL_PATH" - # https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling - if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 - set -gx PATH (_fishify_path $_OLD_VIRTUAL_PATH) - else - set -gx PATH $_OLD_VIRTUAL_PATH - end - set -e _OLD_VIRTUAL_PATH - end - - if test -n "$_OLD_VIRTUAL_PYTHONHOME" - set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME - set -e _OLD_VIRTUAL_PYTHONHOME - end - - if test -n "$_OLD_FISH_PROMPT_OVERRIDE" - and functions -q _old_fish_prompt - # Set an empty local `$fish_function_path` to allow the removal of `fish_prompt` using `functions -e`. - set -l fish_function_path - - # Erase virtualenv's `fish_prompt` and restore the original. - functions -e fish_prompt - functions -c _old_fish_prompt fish_prompt - functions -e _old_fish_prompt - set -e _OLD_FISH_PROMPT_OVERRIDE - end - - set -e VIRTUAL_ENV - - if test "$argv[1]" != 'nondestructive' - # Self-destruct! - functions -e pydoc - functions -e deactivate - functions -e _bashify_path - functions -e _fishify_path - end -end - -# Unset irrelevant variables. -deactivate nondestructive - -set -gx VIRTUAL_ENV "/Users/carolynperniciaro/augur/augur_venv" - -# https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling -if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 - set -gx _OLD_VIRTUAL_PATH (_bashify_path $PATH) -else - set -gx _OLD_VIRTUAL_PATH $PATH -end -set -gx PATH "$VIRTUAL_ENV/bin" $PATH - -# Unset `$PYTHONHOME` if set. -if set -q PYTHONHOME - set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME - set -e PYTHONHOME -end - -function pydoc - python -m pydoc $argv -end - -if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" - # Copy the current `fish_prompt` function as `_old_fish_prompt`. - functions -c fish_prompt _old_fish_prompt - - function fish_prompt - # Save the current $status, for fish_prompts that display it. - set -l old_status $status - - # Prompt override provided? - # If not, just prepend the environment name. - if test -n "" - printf '%s%s' "" (set_color normal) - else - printf '%s(%s) ' (set_color normal) (basename "$VIRTUAL_ENV") - end - - # Restore the original $status - echo "exit $old_status" | source - _old_fish_prompt - end - - set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" -end diff --git a/augur_venv/bin/activate.ps1 b/augur_venv/bin/activate.ps1 deleted file mode 100644 index 95504d3956..0000000000 --- a/augur_venv/bin/activate.ps1 +++ /dev/null @@ -1,60 +0,0 @@ -$script:THIS_PATH = $myinvocation.mycommand.path -$script:BASE_DIR = Split-Path (Resolve-Path "$THIS_PATH/..") -Parent - -function global:deactivate([switch] $NonDestructive) { - if (Test-Path variable:_OLD_VIRTUAL_PATH) { - $env:PATH = $variable:_OLD_VIRTUAL_PATH - Remove-Variable "_OLD_VIRTUAL_PATH" -Scope global - } - - if (Test-Path function:_old_virtual_prompt) { - $function:prompt = $function:_old_virtual_prompt - Remove-Item function:\_old_virtual_prompt - } - - if ($env:VIRTUAL_ENV) { - Remove-Item env:VIRTUAL_ENV -ErrorAction SilentlyContinue - } - - if (!$NonDestructive) { - # Self destruct! - Remove-Item function:deactivate - Remove-Item function:pydoc - } -} - -function global:pydoc { - python -m pydoc $args -} - -# unset irrelevant variables -deactivate -nondestructive - -$VIRTUAL_ENV = $BASE_DIR -$env:VIRTUAL_ENV = $VIRTUAL_ENV - -New-Variable -Scope global -Name _OLD_VIRTUAL_PATH -Value $env:PATH - -$env:PATH = "$env:VIRTUAL_ENV/bin:" + $env:PATH -if (!$env:VIRTUAL_ENV_DISABLE_PROMPT) { - function global:_old_virtual_prompt { - "" - } - $function:_old_virtual_prompt = $function:prompt - - if ("" -ne "") { - function global:prompt { - # Add the custom prefix to the existing prompt - $previous_prompt_value = & $function:_old_virtual_prompt - ("" + $previous_prompt_value) - } - } - else { - function global:prompt { - # Add a prefix to the current prompt, but don't discard it. - $previous_prompt_value = & $function:_old_virtual_prompt - $new_prompt_value = "($( Split-Path $env:VIRTUAL_ENV -Leaf )) " - ($new_prompt_value + $previous_prompt_value) - } - } -} diff --git a/augur_venv/bin/activate.xsh b/augur_venv/bin/activate.xsh deleted file mode 100644 index 55d3e016da..0000000000 --- a/augur_venv/bin/activate.xsh +++ /dev/null @@ -1,46 +0,0 @@ -"""Xonsh activate script for virtualenv""" -from xonsh.tools import get_sep as _get_sep - -def _deactivate(args): - if "pydoc" in aliases: - del aliases["pydoc"] - - if ${...}.get("_OLD_VIRTUAL_PATH", ""): - $PATH = $_OLD_VIRTUAL_PATH - del $_OLD_VIRTUAL_PATH - - if ${...}.get("_OLD_VIRTUAL_PYTHONHOME", ""): - $PYTHONHOME = $_OLD_VIRTUAL_PYTHONHOME - del $_OLD_VIRTUAL_PYTHONHOME - - if "VIRTUAL_ENV" in ${...}: - del $VIRTUAL_ENV - - if "VIRTUAL_ENV_PROMPT" in ${...}: - del $VIRTUAL_ENV_PROMPT - - if "nondestructive" not in args: - # Self destruct! - del aliases["deactivate"] - - -# unset irrelevant variables -_deactivate(["nondestructive"]) -aliases["deactivate"] = _deactivate - -$VIRTUAL_ENV = r"/Users/carolynperniciaro/augur/augur_venv" - -$_OLD_VIRTUAL_PATH = $PATH -$PATH = $PATH[:] -$PATH.add($VIRTUAL_ENV + _get_sep() + "bin", front=True, replace=True) - -if ${...}.get("PYTHONHOME", ""): - # unset PYTHONHOME if set - $_OLD_VIRTUAL_PYTHONHOME = $PYTHONHOME - del $PYTHONHOME - -$VIRTUAL_ENV_PROMPT = "" -if not $VIRTUAL_ENV_PROMPT: - del $VIRTUAL_ENV_PROMPT - -aliases["pydoc"] = ["python", "-m", "pydoc"] diff --git a/augur_venv/bin/activate_this.py b/augur_venv/bin/activate_this.py deleted file mode 100644 index aa96457f28..0000000000 --- a/augur_venv/bin/activate_this.py +++ /dev/null @@ -1,46 +0,0 @@ -"""Activate virtualenv for current interpreter: - -Use exec(open(this_file).read(), {'__file__': this_file}). - -This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. -""" -import os -import site -import sys - -try: - __file__ -except NameError: - raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") - -# prepend bin to PATH (this file is inside the bin directory) -bin_dir = os.path.dirname(os.path.abspath(__file__)) -os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) - -base = os.path.dirname(bin_dir) - -# virtual env is right above bin directory -os.environ["VIRTUAL_ENV"] = base - -# add the virtual environments site-package to the host python import mechanism -IS_PYPY = hasattr(sys, "pypy_version_info") -IS_JYTHON = sys.platform.startswith("java") -if IS_JYTHON: - site_packages = os.path.join(base, "Lib", "site-packages") -elif IS_PYPY: - site_packages = os.path.join(base, "site-packages") -else: - IS_WIN = sys.platform == "win32" - if IS_WIN: - site_packages = os.path.join(base, "Lib", "site-packages") - else: - site_packages = os.path.join(base, "lib", "python{}.{}".format(*sys.version_info), "site-packages") - -prev = set(sys.path) -site.addsitedir(site_packages) -sys.real_prefix = sys.prefix -sys.prefix = base - -# Move the added items to the front of the path, in place -new = list(sys.path) -sys.path[:] = [i for i in new if i not in prev] + [i for i in new if i in prev] diff --git a/augur_venv/bin/alembic b/augur_venv/bin/alembic deleted file mode 100755 index ceef610241..0000000000 --- a/augur_venv/bin/alembic +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'alembic==1.1.0','console_scripts','alembic' -__requires__ = 'alembic==1.1.0' -import re -import sys - -from alembic.config import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/augur b/augur_venv/bin/augur deleted file mode 100755 index 4368bf805c..0000000000 --- a/augur_venv/bin/augur +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'augur','console_scripts','augur' -__requires__ = 'augur' -import re -import sys - -from augur.runtime import run - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/augur_run b/augur_venv/bin/augur_run deleted file mode 100755 index 045b4a86af..0000000000 --- a/augur_venv/bin/augur_run +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'augur','console_scripts','augur_run' -__requires__ = 'augur' -import re -import sys - -from augur.cli.run import run - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/chardetect b/augur_venv/bin/chardetect deleted file mode 100755 index 49c7341d45..0000000000 --- a/augur_venv/bin/chardetect +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'chardet==3.0.4','console_scripts','chardetect' -__requires__ = 'chardet==3.0.4' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('chardet==3.0.4', 'console_scripts', 'chardetect')() - ) diff --git a/augur_venv/bin/coloredlogs b/augur_venv/bin/coloredlogs deleted file mode 100755 index 00416a17a3..0000000000 --- a/augur_venv/bin/coloredlogs +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'coloredlogs==10.0','console_scripts','coloredlogs' -__requires__ = 'coloredlogs==10.0' -import re -import sys - -from coloredlogs.cli import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/cygdb b/augur_venv/bin/cygdb deleted file mode 100755 index 766907b36a..0000000000 --- a/augur_venv/bin/cygdb +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cygdb' -__requires__ = 'Cython==0.29.13' -import re -import sys - -from Cython.Debugger.Cygdb import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/cython b/augur_venv/bin/cython deleted file mode 100755 index d8b1aacce2..0000000000 --- a/augur_venv/bin/cython +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cython' -__requires__ = 'Cython==0.29.13' -import re -import sys - -from Cython.Compiler.Main import setuptools_main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(setuptools_main()) \ No newline at end of file diff --git a/augur_venv/bin/cythonize b/augur_venv/bin/cythonize deleted file mode 100755 index 07554069ce..0000000000 --- a/augur_venv/bin/cythonize +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'Cython==0.29.13','console_scripts','cythonize' -__requires__ = 'Cython==0.29.13' -import re -import sys - -from Cython.Build.Cythonize import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install b/augur_venv/bin/easy_install deleted file mode 100755 index c9ac46a5ea..0000000000 --- a/augur_venv/bin/easy_install +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==41.2.0','console_scripts','easy_install' -__requires__ = 'setuptools==41.2.0' -import re -import sys - -from setuptools.command.easy_install import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install-3.6 b/augur_venv/bin/easy_install-3.6 deleted file mode 100755 index f1d05e907e..0000000000 --- a/augur_venv/bin/easy_install-3.6 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==41.2.0','console_scripts','easy_install-3.6' -__requires__ = 'setuptools==41.2.0' -import re -import sys - -from setuptools.command.easy_install import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/easy_install-3.7 b/augur_venv/bin/easy_install-3.7 deleted file mode 100755 index 9d1bb61aae..0000000000 --- a/augur_venv/bin/easy_install-3.7 +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from setuptools.command.easy_install import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/f2py b/augur_venv/bin/f2py deleted file mode 100755 index 2285bb49fd..0000000000 --- a/augur_venv/bin/f2py +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py' -__requires__ = 'numpy==1.17.2' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py')() - ) diff --git a/augur_venv/bin/f2py3 b/augur_venv/bin/f2py3 deleted file mode 100755 index 383f1eb1ca..0000000000 --- a/augur_venv/bin/f2py3 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py3' -__requires__ = 'numpy==1.17.2' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py3')() - ) diff --git a/augur_venv/bin/f2py3.7 b/augur_venv/bin/f2py3.7 deleted file mode 100755 index 6774860547..0000000000 --- a/augur_venv/bin/f2py3.7 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'numpy==1.17.2','console_scripts','f2py3.7' -__requires__ = 'numpy==1.17.2' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('numpy==1.17.2', 'console_scripts', 'f2py3.7')() - ) diff --git a/augur_venv/bin/facade_worker_start b/augur_venv/bin/facade_worker_start deleted file mode 100755 index 950ddf5d5f..0000000000 --- a/augur_venv/bin/facade_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'facade-worker','console_scripts','facade_worker_start' -__requires__ = 'facade-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('facade-worker', 'console_scripts', 'facade_worker_start')() - ) diff --git a/augur_venv/bin/flask b/augur_venv/bin/flask deleted file mode 100755 index 508b6a6158..0000000000 --- a/augur_venv/bin/flask +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'Flask==1.1.1','console_scripts','flask' -__requires__ = 'Flask==1.1.1' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('Flask==1.1.1', 'console_scripts', 'flask')() - ) diff --git a/augur_venv/bin/github_worker_start b/augur_venv/bin/github_worker_start deleted file mode 100755 index 9a1ff7789e..0000000000 --- a/augur_venv/bin/github_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'github-worker','console_scripts','github_worker_start' -__requires__ = 'github-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('github-worker', 'console_scripts', 'github_worker_start')() - ) diff --git a/augur_venv/bin/gunicorn b/augur_venv/bin/gunicorn deleted file mode 100755 index c64b6637b0..0000000000 --- a/augur_venv/bin/gunicorn +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'gunicorn==19.9.0','console_scripts','gunicorn' -__requires__ = 'gunicorn==19.9.0' -import re -import sys - -from gunicorn.app.wsgiapp import run - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/gunicorn_paster b/augur_venv/bin/gunicorn_paster deleted file mode 100755 index 6625178128..0000000000 --- a/augur_venv/bin/gunicorn_paster +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'gunicorn==19.9.0','console_scripts','gunicorn_paster' -__requires__ = 'gunicorn==19.9.0' -import re -import sys - -from gunicorn.app.pasterapp import run - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) \ No newline at end of file diff --git a/augur_venv/bin/humanfriendly b/augur_venv/bin/humanfriendly deleted file mode 100755 index f0e4701aa4..0000000000 --- a/augur_venv/bin/humanfriendly +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'humanfriendly==4.18','console_scripts','humanfriendly' -__requires__ = 'humanfriendly==4.18' -import re -import sys - -from humanfriendly.cli import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/insight_worker_start b/augur_venv/bin/insight_worker_start deleted file mode 100755 index c33d563cd1..0000000000 --- a/augur_venv/bin/insight_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'insight-worker','console_scripts','insight_worker_start' -__requires__ = 'insight-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('insight-worker', 'console_scripts', 'insight_worker_start')() - ) diff --git a/augur_venv/bin/ipdb3 b/augur_venv/bin/ipdb3 deleted file mode 100755 index 65d5e9335e..0000000000 --- a/augur_venv/bin/ipdb3 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'ipdb==0.12.2','console_scripts','ipdb3' -__requires__ = 'ipdb==0.12.2' -import re -import sys - -from ipdb.__main__ import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/iptest b/augur_venv/bin/iptest deleted file mode 100755 index 68c8865734..0000000000 --- a/augur_venv/bin/iptest +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','iptest' -__requires__ = 'ipython==7.8.0' -import re -import sys - -from IPython.testing.iptestcontroller import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/iptest3 b/augur_venv/bin/iptest3 deleted file mode 100755 index 1ce6c11b52..0000000000 --- a/augur_venv/bin/iptest3 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','iptest3' -__requires__ = 'ipython==7.8.0' -import re -import sys - -from IPython.testing.iptestcontroller import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/ipython b/augur_venv/bin/ipython deleted file mode 100755 index 9ec857d770..0000000000 --- a/augur_venv/bin/ipython +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','ipython' -__requires__ = 'ipython==7.8.0' -import re -import sys - -from IPython import start_ipython - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(start_ipython()) \ No newline at end of file diff --git a/augur_venv/bin/ipython3 b/augur_venv/bin/ipython3 deleted file mode 100755 index 79f71f6c17..0000000000 --- a/augur_venv/bin/ipython3 +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==7.8.0','console_scripts','ipython3' -__requires__ = 'ipython==7.8.0' -import re -import sys - -from IPython import start_ipython - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(start_ipython()) \ No newline at end of file diff --git a/augur_venv/bin/jupyter b/augur_venv/bin/jupyter deleted file mode 100755 index 0bdc525e9b..0000000000 --- a/augur_venv/bin/jupyter +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_core.command import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/jupyter-kernel b/augur_venv/bin/jupyter-kernel deleted file mode 100755 index 69ce851d6e..0000000000 --- a/augur_venv/bin/jupyter-kernel +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_client.kernelapp import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/jupyter-kernelspec b/augur_venv/bin/jupyter-kernelspec deleted file mode 100755 index bdfcd6bada..0000000000 --- a/augur_venv/bin/jupyter-kernelspec +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_client.kernelspecapp import KernelSpecApp - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(KernelSpecApp.launch_instance()) diff --git a/augur_venv/bin/jupyter-migrate b/augur_venv/bin/jupyter-migrate deleted file mode 100755 index 56d6adc4aa..0000000000 --- a/augur_venv/bin/jupyter-migrate +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_core.migrate import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/jupyter-run b/augur_venv/bin/jupyter-run deleted file mode 100755 index 8bc8c12ac0..0000000000 --- a/augur_venv/bin/jupyter-run +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_client.runapp import RunApp - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(RunApp.launch_instance()) diff --git a/augur_venv/bin/jupyter-troubleshoot b/augur_venv/bin/jupyter-troubleshoot deleted file mode 100755 index 59a10f4c1e..0000000000 --- a/augur_venv/bin/jupyter-troubleshoot +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from jupyter_core.troubleshoot import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/linux_badge_worker_start b/augur_venv/bin/linux_badge_worker_start deleted file mode 100755 index 396a035aef..0000000000 --- a/augur_venv/bin/linux_badge_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'linux-badge-worker','console_scripts','linux_badge_worker_start' -__requires__ = 'linux-badge-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('linux-badge-worker', 'console_scripts', 'linux_badge_worker_start')() - ) diff --git a/augur_venv/bin/mako-render b/augur_venv/bin/mako-render deleted file mode 100755 index aec8b8ae4c..0000000000 --- a/augur_venv/bin/mako-render +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'Mako==1.1.0','console_scripts','mako-render' -__requires__ = 'Mako==1.1.0' -import re -import sys - -from mako.cmd import cmdline - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(cmdline()) \ No newline at end of file diff --git a/augur_venv/bin/metric_status_worker_start b/augur_venv/bin/metric_status_worker_start deleted file mode 100755 index aff9baedef..0000000000 --- a/augur_venv/bin/metric_status_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'metric-status-worker','console_scripts','metric_status_worker_start' -__requires__ = 'metric-status-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('metric-status-worker', 'console_scripts', 'metric_status_worker_start')() - ) diff --git a/augur_venv/bin/pip b/augur_venv/bin/pip deleted file mode 100755 index 74015cea09..0000000000 --- a/augur_venv/bin/pip +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from pip._internal import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/pip3 b/augur_venv/bin/pip3 deleted file mode 100755 index 74015cea09..0000000000 --- a/augur_venv/bin/pip3 +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from pip._internal import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/pip3.7 b/augur_venv/bin/pip3.7 deleted file mode 100755 index 74015cea09..0000000000 --- a/augur_venv/bin/pip3.7 +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from pip._internal import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/pipreqs b/augur_venv/bin/pipreqs deleted file mode 100755 index d2f71aeb39..0000000000 --- a/augur_venv/bin/pipreqs +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from pipreqs.pipreqs import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/pull_request_worker_start b/augur_venv/bin/pull_request_worker_start deleted file mode 100755 index 0a16fb713b..0000000000 --- a/augur_venv/bin/pull_request_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'pull-request-worker','console_scripts','pull_request_worker_start' -__requires__ = 'pull-request-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('pull-request-worker', 'console_scripts', 'pull_request_worker_start')() - ) diff --git a/augur_venv/bin/py.test b/augur_venv/bin/py.test deleted file mode 100755 index 09cd6d2915..0000000000 --- a/augur_venv/bin/py.test +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'pytest==5.1.2','console_scripts','py.test' -__requires__ = 'pytest==5.1.2' -import re -import sys - -from pytest import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pybabel b/augur_venv/bin/pybabel deleted file mode 100755 index c0e2a52c3d..0000000000 --- a/augur_venv/bin/pybabel +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from babel.messages.frontend import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/pygmentize b/augur_venv/bin/pygmentize deleted file mode 100755 index 9005bc132a..0000000000 --- a/augur_venv/bin/pygmentize +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'Pygments==2.4.2','console_scripts','pygmentize' -__requires__ = 'Pygments==2.4.2' -import re -import sys - -from pygments.cmdline import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pyjwt b/augur_venv/bin/pyjwt deleted file mode 100755 index 36a472b24e..0000000000 --- a/augur_venv/bin/pyjwt +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'PyJWT==1.7.1','console_scripts','pyjwt' -__requires__ = 'PyJWT==1.7.1' -import re -import sys - -from jwt.__main__ import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/pytest b/augur_venv/bin/pytest deleted file mode 100755 index 772a6d314d..0000000000 --- a/augur_venv/bin/pytest +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'pytest==5.1.2','console_scripts','pytest' -__requires__ = 'pytest==5.1.2' -import re -import sys - -from pytest import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/python b/augur_venv/bin/python deleted file mode 120000 index 940bee389a..0000000000 --- a/augur_venv/bin/python +++ /dev/null @@ -1 +0,0 @@ -python3.7 \ No newline at end of file diff --git a/augur_venv/bin/python-config b/augur_venv/bin/python-config deleted file mode 100755 index 4699164f9b..0000000000 --- a/augur_venv/bin/python-config +++ /dev/null @@ -1,78 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python - -import sys -import getopt -import sysconfig - -valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', - 'ldflags', 'help'] - -if sys.version_info >= (3, 2): - valid_opts.insert(-1, 'extension-suffix') - valid_opts.append('abiflags') -if sys.version_info >= (3, 3): - valid_opts.append('configdir') - - -def exit_with_usage(code=1): - sys.stderr.write("Usage: {0} [{1}]\n".format( - sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) - sys.exit(code) - -try: - opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) -except getopt.error: - exit_with_usage() - -if not opts: - exit_with_usage() - -pyver = sysconfig.get_config_var('VERSION') -getvar = sysconfig.get_config_var - -opt_flags = [flag for (flag, val) in opts] - -if '--help' in opt_flags: - exit_with_usage(code=0) - -for opt in opt_flags: - if opt == '--prefix': - print(sysconfig.get_config_var('prefix')) - - elif opt == '--exec-prefix': - print(sysconfig.get_config_var('exec_prefix')) - - elif opt in ('--includes', '--cflags'): - flags = ['-I' + sysconfig.get_path('include'), - '-I' + sysconfig.get_path('platinclude')] - if opt == '--cflags': - flags.extend(getvar('CFLAGS').split()) - print(' '.join(flags)) - - elif opt in ('--libs', '--ldflags'): - abiflags = getattr(sys, 'abiflags', '') - libs = ['-lpython' + pyver + abiflags] - libs += getvar('LIBS').split() - libs += getvar('SYSLIBS').split() - # add the prefix/lib/pythonX.Y/config dir, but only if there is no - # shared library in prefix/lib/. - if opt == '--ldflags': - if not getvar('Py_ENABLE_SHARED'): - libs.insert(0, '-L' + getvar('LIBPL')) - if not getvar('PYTHONFRAMEWORK'): - libs.extend(getvar('LINKFORSHARED').split()) - print(' '.join(libs)) - - elif opt == '--extension-suffix': - ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') - if ext_suffix is None: - ext_suffix = sysconfig.get_config_var('SO') - print(ext_suffix) - - elif opt == '--abiflags': - if not getattr(sys, 'abiflags', None): - exit_with_usage() - print(sys.abiflags) - - elif opt == '--configdir': - print(sysconfig.get_config_var('LIBPL')) diff --git a/augur_venv/bin/python3 b/augur_venv/bin/python3 deleted file mode 120000 index 940bee389a..0000000000 --- a/augur_venv/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -python3.7 \ No newline at end of file diff --git a/augur_venv/bin/python3.7 b/augur_venv/bin/python3.7 deleted file mode 100755 index a0bda459a88ae837c98d297aa70408e7becbad64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12552 zcmeI2&rcIU6vwB6(kOv~2Y<%~gHaQARX~U_+9E}Ws32gBiJ5Hel5T9b&F(hPc;RBA z2_~HI;-BEbg9p7C{{iF4s|Pi5;17_4_4{^b%eDpX#`n_KnfK<+o7vB7FP-;!bK_5k z5V1BPmiGuDdZ4MjLOc^m^n^G9oq$R?oxYiQn7MbCyp0lTG`F=V&vOJyIhT1b*BIi@ zPd570@&bDk*p6sd!%}+YlD8GxoNwhM9tOkvRS4M)(k_;xwv?_{$+~q{bG|i|Z=Z?? z?QlX|nzgN9wtyvxpyvZMLJ{i)%|dpk9G=T>HHGJNMQs664~uu0;|raa*g`TOv@ z@I&xLYsb+ZrU4~MWsji6$LB-iWf=6%end-Wa{xLGC87MG(pl|xUT;+%nirKW7)fX+ zRIj*>Ua+!yu3E^!COHPBeSFCO{`&O%$i}k(TwA&XUlK~|i!S_1pw#zSwtb47 zLq9=dO3vWW*r)ytP` zp$$Zr4V>F8H=qscYKp(kNaT59o8NJKu`RaX8$6mes)4hWMKI(vlz8QFPV|19RW_YJ z3lm@hOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz4U|4m?i;>C|g>%^ee zPgmSiFHe|g(zCVxd9 -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing HTML. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates (X)HTML documents from standalone reStructuredText ' - 'sources. ' + default_description) - -publish_cmdline(writer_name='html', description=description) diff --git a/augur_venv/bin/rst2html4.py b/augur_venv/bin/rst2html4.py deleted file mode 100755 index 33f905e1b7..0000000000 --- a/augur_venv/bin/rst2html4.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2html4.py 7994 2016-12-10 17:41:45Z milde $ -# Author: David Goodger -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing (X)HTML. - -The output conforms to XHTML 1.0 transitional -and almost to HTML 4.01 transitional (except for closing empty tags). -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates (X)HTML documents from standalone reStructuredText ' - 'sources. ' + default_description) - -publish_cmdline(writer_name='html4', description=description) diff --git a/augur_venv/bin/rst2html5.py b/augur_venv/bin/rst2html5.py deleted file mode 100755 index 7e01f7674d..0000000000 --- a/augur_venv/bin/rst2html5.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf8 -*- -# :Copyright: © 2015 Günter Milde. -# :License: Released under the terms of the `2-Clause BSD license`_, in short: -# -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. -# This file is offered as-is, without any warranty. -# -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause -# -# Revision: $Revision: 7847 $ -# Date: $Date: 2015-03-17 18:30:47 +0100 (Di, 17. Mär 2015) $ - -""" -A minimal front end to the Docutils Publisher, producing HTML 5 documents. - -The output also conforms to XHTML 1.0 transitional -(except for the doctype declaration). -""" - -try: - import locale # module missing in Jython - locale.setlocale(locale.LC_ALL, '') -except locale.Error: - pass - -from docutils.core import publish_cmdline, default_description - -description = (u'Generates HTML 5 documents from standalone ' - u'reStructuredText sources ' - + default_description) - -publish_cmdline(writer_name='html5', description=description) diff --git a/augur_venv/bin/rst2latex.py b/augur_venv/bin/rst2latex.py deleted file mode 100755 index b9dabc4ae2..0000000000 --- a/augur_venv/bin/rst2latex.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2latex.py 5905 2009-04-16 12:04:49Z milde $ -# Author: David Goodger -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing LaTeX. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline - -description = ('Generates LaTeX documents from standalone reStructuredText ' - 'sources. ' - 'Reads from (default is stdin) and writes to ' - ' (default is stdout). See ' - ' for ' - 'the full reference.') - -publish_cmdline(writer_name='latex', description=description) diff --git a/augur_venv/bin/rst2man.py b/augur_venv/bin/rst2man.py deleted file mode 100755 index 8f979939c7..0000000000 --- a/augur_venv/bin/rst2man.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# Author: -# Contact: grubert@users.sf.net -# Copyright: This module has been placed in the public domain. - -""" -man.py -====== - -This module provides a simple command line interface that uses the -man page writer to output from ReStructuredText source. -""" - -import locale -try: - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description -from docutils.writers import manpage - -description = ("Generates plain unix manual documents. " + default_description) - -publish_cmdline(writer=manpage.Writer(), description=description) diff --git a/augur_venv/bin/rst2odt.py b/augur_venv/bin/rst2odt.py deleted file mode 100755 index 12d115d892..0000000000 --- a/augur_venv/bin/rst2odt.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2odt.py 5839 2009-01-07 19:09:28Z dkuhlman $ -# Author: Dave Kuhlman -# Copyright: This module has been placed in the public domain. - -""" -A front end to the Docutils Publisher, producing OpenOffice documents. -""" - -import sys -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline_to_binary, default_description -from docutils.writers.odf_odt import Writer, Reader - - -description = ('Generates OpenDocument/OpenOffice/ODF documents from ' - 'standalone reStructuredText sources. ' + default_description) - - -writer = Writer() -reader = Reader() -output = publish_cmdline_to_binary(reader=reader, writer=writer, - description=description) - diff --git a/augur_venv/bin/rst2odt_prepstyles.py b/augur_venv/bin/rst2odt_prepstyles.py deleted file mode 100755 index 4ff0861b7b..0000000000 --- a/augur_venv/bin/rst2odt_prepstyles.py +++ /dev/null @@ -1,67 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2odt_prepstyles.py 5839 2009-01-07 19:09:28Z dkuhlman $ -# Author: Dave Kuhlman -# Copyright: This module has been placed in the public domain. - -""" -Fix a word-processor-generated styles.odt for odtwriter use: Drop page size -specifications from styles.xml in STYLE_FILE.odt. -""" - -# -# Author: Michael Schutte - -from lxml import etree -import sys -import zipfile -from tempfile import mkstemp -import shutil -import os - -NAMESPACES = { - "style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0", - "fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" -} - -def prepstyle(filename): - - zin = zipfile.ZipFile(filename) - styles = zin.read("styles.xml") - - root = etree.fromstring(styles) - for el in root.xpath("//style:page-layout-properties", - namespaces=NAMESPACES): - for attr in el.attrib: - if attr.startswith("{%s}" % NAMESPACES["fo"]): - del el.attrib[attr] - - tempname = mkstemp() - zout = zipfile.ZipFile(os.fdopen(tempname[0], "w"), "w", - zipfile.ZIP_DEFLATED) - - for item in zin.infolist(): - if item.filename == "styles.xml": - zout.writestr(item, etree.tostring(root)) - else: - zout.writestr(item, zin.read(item.filename)) - - zout.close() - zin.close() - shutil.move(tempname[1], filename) - - -def main(): - args = sys.argv[1:] - if len(args) != 1: - print >> sys.stderr, __doc__ - print >> sys.stderr, "Usage: %s STYLE_FILE.odt\n" % sys.argv[0] - sys.exit(1) - filename = args[0] - prepstyle(filename) - -if __name__ == '__main__': - main() - - -# vim:tw=78:sw=4:sts=4:et: diff --git a/augur_venv/bin/rst2pseudoxml.py b/augur_venv/bin/rst2pseudoxml.py deleted file mode 100755 index df9948f15c..0000000000 --- a/augur_venv/bin/rst2pseudoxml.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2pseudoxml.py 4564 2006-05-21 20:44:42Z wiemann $ -# Author: David Goodger -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing pseudo-XML. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates pseudo-XML from standalone reStructuredText ' - 'sources (for testing purposes). ' + default_description) - -publish_cmdline(description=description) diff --git a/augur_venv/bin/rst2s5.py b/augur_venv/bin/rst2s5.py deleted file mode 100755 index 6cfe5d862f..0000000000 --- a/augur_venv/bin/rst2s5.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2s5.py 4564 2006-05-21 20:44:42Z wiemann $ -# Author: Chris Liechti -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing HTML slides using -the S5 template system. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates S5 (X)HTML slideshow documents from standalone ' - 'reStructuredText sources. ' + default_description) - -publish_cmdline(writer_name='s5', description=description) diff --git a/augur_venv/bin/rst2xetex.py b/augur_venv/bin/rst2xetex.py deleted file mode 100755 index 1cdf54a875..0000000000 --- a/augur_venv/bin/rst2xetex.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2xetex.py 7847 2015-03-17 17:30:47Z milde $ -# Author: Guenter Milde -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline - -description = ('Generates LaTeX documents from standalone reStructuredText ' - 'sources for compilation with the Unicode-aware TeX variants ' - 'XeLaTeX or LuaLaTeX. ' - 'Reads from (default is stdin) and writes to ' - ' (default is stdout). See ' - ' for ' - 'the full reference.') - -publish_cmdline(writer_name='xetex', description=description) diff --git a/augur_venv/bin/rst2xml.py b/augur_venv/bin/rst2xml.py deleted file mode 100755 index a1be2fb700..0000000000 --- a/augur_venv/bin/rst2xml.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rst2xml.py 4564 2006-05-21 20:44:42Z wiemann $ -# Author: David Goodger -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing Docutils XML. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates Docutils-native XML from standalone ' - 'reStructuredText sources. ' + default_description) - -publish_cmdline(writer_name='xml', description=description) diff --git a/augur_venv/bin/rstpep2html.py b/augur_venv/bin/rstpep2html.py deleted file mode 100755 index a5f3adf1cd..0000000000 --- a/augur_venv/bin/rstpep2html.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -# $Id: rstpep2html.py 4564 2006-05-21 20:44:42Z wiemann $ -# Author: David Goodger -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing HTML from PEP -(Python Enhancement Proposal) documents. -""" - -try: - import locale - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish_cmdline, default_description - - -description = ('Generates (X)HTML from reStructuredText-format PEP files. ' - + default_description) - -publish_cmdline(reader_name='pep', writer_name='pep_html', - description=description) diff --git a/augur_venv/bin/sphinx-apidoc b/augur_venv/bin/sphinx-apidoc deleted file mode 100755 index 43e693d6c5..0000000000 --- a/augur_venv/bin/sphinx-apidoc +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from sphinx.ext.apidoc import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/sphinx-autogen b/augur_venv/bin/sphinx-autogen deleted file mode 100755 index 1a42c292a9..0000000000 --- a/augur_venv/bin/sphinx-autogen +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from sphinx.ext.autosummary.generate import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/sphinx-build b/augur_venv/bin/sphinx-build deleted file mode 100755 index 630cb2d152..0000000000 --- a/augur_venv/bin/sphinx-build +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from sphinx.cmd.build import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/sphinx-quickstart b/augur_venv/bin/sphinx-quickstart deleted file mode 100755 index 1462540042..0000000000 --- a/augur_venv/bin/sphinx-quickstart +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from sphinx.cmd.quickstart import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/bin/tldextract b/augur_venv/bin/tldextract deleted file mode 100755 index 4e36552ccf..0000000000 --- a/augur_venv/bin/tldextract +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python -# -*- coding: utf-8 -*- -# EASY-INSTALL-ENTRY-SCRIPT: 'tldextract==2.2.1','console_scripts','tldextract' -__requires__ = 'tldextract==2.2.1' -import re -import sys - -from tldextract.cli import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) \ No newline at end of file diff --git a/augur_venv/bin/value_worker_start b/augur_venv/bin/value_worker_start deleted file mode 100755 index c298f83a09..0000000000 --- a/augur_venv/bin/value_worker_start +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# EASY-INSTALL-ENTRY-SCRIPT: 'value-worker','console_scripts','value_worker_start' -__requires__ = 'value-worker' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('value-worker', 'console_scripts', 'value_worker_start')() - ) diff --git a/augur_venv/bin/vba_extract.py b/augur_venv/bin/vba_extract.py deleted file mode 100755 index d24aac80a9..0000000000 --- a/augur_venv/bin/vba_extract.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 - -############################################################################## -# -# vba_extract - A simple utility to extract a vbaProject.bin binary from an -# Excel 2007+ xlsm file for insertion into an XlsxWriter file. -# -# Copyright 2013-2019, John McNamara, jmcnamara@cpan.org -# -import sys -from zipfile import ZipFile -from zipfile import BadZipfile - -# The VBA project file we want to extract. -vba_filename = 'vbaProject.bin' - -# Get the xlsm file name from the commandline. -if len(sys.argv) > 1: - xlsm_file = sys.argv[1] -else: - print("\nUtility to extract a vbaProject.bin binary from an Excel 2007+ " - "xlsm macro file for insertion into an XlsxWriter file." - "\n" - "See: https://xlsxwriter.readthedocs.io/working_with_macros.html\n" - "\n" - "Usage: vba_extract file.xlsm\n") - exit() - -try: - # Open the Excel xlsm file as a zip file. - xlsm_zip = ZipFile(xlsm_file, 'r') - - # Read the xl/vbaProject.bin file. - vba_data = xlsm_zip.read('xl/' + vba_filename) - - # Write the vba data to a local file. - vba_file = open(vba_filename, "wb") - vba_file.write(vba_data) - vba_file.close() - -except IOError as e: - print("File error: %s" % str(e)) - exit() - -except KeyError as e: - # Usually when there isn't a xl/vbaProject.bin member in the file. - print("File error: %s" % str(e)) - print("File may not be an Excel xlsm macro file: '%s'" % xlsm_file) - exit() - -except BadZipfile as e: - # Usually if the file is an xls file and not an xlsm file. - print("File error: %s: '%s'" % (str(e), xlsm_file)) - print("File may not be an Excel xlsm macro file.") - exit() - -except Exception as e: - # Catch any other exceptions. - print("File error: %s" % str(e)) - exit() - -print("Extracted: %s" % vba_filename) diff --git a/augur_venv/bin/wheel b/augur_venv/bin/wheel deleted file mode 100755 index aefa4f8898..0000000000 --- a/augur_venv/bin/wheel +++ /dev/null @@ -1,10 +0,0 @@ -#!/Users/carolynperniciaro/augur/augur_venv/bin/python3.7 -# -*- coding: utf-8 -*- -import re -import sys - -from wheel.cli import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/augur_venv/include/python3.7m b/augur_venv/include/python3.7m deleted file mode 120000 index 98003c0cec..0000000000 --- a/augur_venv/include/python3.7m +++ /dev/null @@ -1 +0,0 @@ -/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m \ No newline at end of file diff --git a/augur_venv/share/jupyter/kernels/python3/kernel.json b/augur_venv/share/jupyter/kernels/python3/kernel.json deleted file mode 100644 index db1f086351..0000000000 --- a/augur_venv/share/jupyter/kernels/python3/kernel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "argv": [ - "python", - "-m", - "ipykernel_launcher", - "-f", - "{connection_file}" - ], - "display_name": "Python 3", - "language": "python" -} \ No newline at end of file diff --git a/augur_venv/share/jupyter/kernels/python3/logo-32x32.png b/augur_venv/share/jupyter/kernels/python3/logo-32x32.png deleted file mode 100644 index be81330765764699553aa4fbaf0e9fc27c20c6d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1084 zcmV-C1jGA@P)enw2jbMszQuf3kC$K7$S;4l;TgSRfzha5>pgWAEY9PR!IdB zTSZXtp`b02h)|SJ3#AW|AKF?KgNSQ|Sg=ZCgHaT%F`4#g>iG8;N__GBLh26(2qOGO9};SPeUDLyV^m!K($s69;fB|`Ui z{nqhFk+};I5Vb+1*IC+gaNEtF()dX{`(!1eUb?=>+~p#JOj-qUi2^^^uzi1p(thMz&#&LJq>Cf)~tBhxq*;Npy$=mheX>2t4(OR zWk&s74VR$m@6rlD?Nud*cEGO2$>|mV&tzP1%j+W-N_;a>$_%)&Yn?|hX(50fV5s); zkLsKLb20?nJo-eIQ&vLU?~T?v{=JUtFa!EFC;;*i2@lY(#8Ur2b{` z!nc_6C42;g?mDnyRp9)U84ZxUv=Ja10XDYX;KZ|EPJ`h_&;S{#m9Q!a*xC#MiI?P; zx4sNs;+Uif!Da~pAQU}S)ww^M;qb(^FD`~`s1D2+foklsECF&ZZKas%kF~bU-M9bY zuhs+V2CzISGy`A&Lkq;MkgWkjD)R)1WqC_*Tx45LdH=lV+}XPaAFS+wus(ZG#IuZp zEE@YdBSMkKnX~3J?j7u_^kl&mQ+7t_i^t4YG6X0cS+J89bl~_Igc~wh(?=P_08}Iv z0NHqkz|x<~Z;3paR=+czhC^#TYlWDdd@Rc|#cCUooxt4edl>=;-neznjL)SlXtdOh z=2NAO%Gxj%BLM->i|(q=eePLs=%wD>*F6312}yTRxn%!IzZtmkN`YjQBMNkckc4h;pSXO%%?N2y_ccz zS`INlItXC6DR;umS}Mn43NzsR7MS0Sf|rrv1n7UvdO9UC3&XB+{A~zNMyyXY@lF_q zps;z-9S*u(m1{=;T?YYxd%vmwj5N7<3lv^}?EK6DlWbFPZoBI|w5zEE06;(VF2nD? z_QUyZi0eRG2jDb-NyvSR5{_bd`5o6W`WOCh1>4`s79R;zVm_k)0000kjcw83I)rwURf9H)0d)l3>^8*`$3&wplXaSnv^ouL zxig617>J8x{$<2zvZ44vm&sPJz*Z;|)^sj29S|e(QD`@&rR&E%&(A;Zx#ym9?>Xnb z=k|6x#=dRS_rB-ex99mi&+qvXHKxY@^N`8h{N|r@TsA(& zsCpk!BK%oN(i-QUbD69cd?H!sn{mG-Lrs4l70Gd-TRSnnlw<)m#)CQ1364@U( zb1huc+%2C?f zYjwl_PTT;XJ$4oVU=Be51c+U`UEX_ls%aSHu0jnXMCH=*+Sd}C2irp2UqB=Z0E)N85&+GM z>q^`|nwHj#MQ}!_hFxHI0P?d05b<<^{$@L)xRXP$*7NMe_Al`SAe_UPXbALJOH3_5 zcM?1d0-}ThP+N;&R(k{$P!RUyBLuGx7u*NjI0EqWx*LBO^)ny+&f^)CC}~0x8ViOeXmOp`hB@Wk%DqXy3C1Q0?$fKnaUFPm1OP-ZjVK`deF} zSeAF2mylo&RQ`&~-?2v|r4t6AY0JJPRN1JijUXW&kBk6^2Cvr^I{u5UuqP$>16T2K z9R$k@xromL3Y>lI8J_*t?K0<)3neE)OPIZA`y$|W32O|S;>(;-_BoaG7O_=2G z6D)9yzzx@Wf#9y!>3jH(JLX0Lz*6}#sWZF@h^aPF)_fq;^c^8JPiTh*0JRcGe<2b8 zN_@jF0rBt^lR=9@fPBV9TT3%D0)}bdo{O3TaO38^?3k0H{bUT-qpE!%+$xpS2LPf1an-UJ2DJ9KqouI6R;TMiW;X0gzCw zHO|Y+R^XVXy4>IM=$idVj4jUz?GhXz)&RZ6C=nuAOFRF5GYcGpaQ8++^bVf8D~Ysh zasY5*fBszU=;2(eHKTx{cJgCCqK3OyNG?6L{qEzi@F-xtJB056lt^D=Mgd{1M;|3o zptQ9-Tf6}9DG0x>)iWA;*7d!}f34XL)z1YaJw+(tZvmBs7Qne4&B4c^71J}j0Cl!mHAtQyc|{3a zzhEhE=-#}lmuK6SVomEdD6U096Gc<`?9IYNt09igBXq$&uNwIPk|#@Za%kz^ysDSy z+SWt37r+OM+U|uhJI|3tadcq`kq(&o0OEv1c4+!|*N<=iE&E$ngIs6G>;UsEYRUoH z*N{CGAkP{BAQ=ioDsa;2iU)Z9+n0m7&G0!|IACWkdlBI1w@S4<6a_#XeAP z1@TTJt)oc(Zd&9NrG)FXraO%+ph_!V8AqA`#S;PpD4=AwE!!e+(HZRH`J4Q`%$PKn zL#RLx{&wZdvT~>OrXG{ynQ!)hTxeLDW{is=avgT_Q@X{_ryQSRf-z;cCzzZ%57>p+XNOwhgQWFSDdeo<;8g((CJEj(Z4)c6IEc3%k9{YIG zk+*m8hahOo-7ycwG7kU%o^1X(sCP!|<+23tKd4KhH8=|#dkr8hdCPys`Kq?qW`a42rV{8owiaTo2X%UpUcJedmjJmB_0Mh> zDfdCyN&K%dp1k=ojE<}Z_*K9@aFMV5@X-t5FOkM$vasuX>}!EgFkb%DENHq8U>%?f zGQUv=A_?Fk1g}BS5Ab;i4xv&G$^7TeU}{W_sWCMsdHfgT%>1XE)oy_r_v^xE0!1Xu0MMTGSD&7Wc~tOr^TIfDD1xHRQZC-aExy$>Q8SU0!dK zht+w+eENF?4e#moFay(N26HQv^a#pUs80X}xb`{J0gEdzh!iO=e|r=8=ll(ew|9`N zAGdc8E11K@$FA;S{%Zt3|1_Upc*u2)+z?3drK3`8B@7hYQt}EVK2tW0&%y|~C!2?F z`5t2z8fsDvg4d+sxmG5EQn{ECHOd^Xyi+WzQO`mcp4A9d-%b;O=pjCcLs}yxjwFYx3zM=HOn(5I> zc&IIq2_e(SzXk`>!aMo?%t8J*2W(o~d)L6hsWpf?H7(|%6!}rgQ$u|Pd#CeLI0z}y zyOF~%B~T$Rjug}M%uJ)lb^n^eOx`P(}=yMru8vR7fj(5HvZw zv#O!_%Yn48inO~Fl8F0WsLs+WEn3k_-iVy3>Jzzn3a zm?`x&fD+K9%J5!SqHOPH$|U`z1@ zmb|MiBe);#9`2X3c&ts7a7ymdk-E;E$|#8cqw46wmtH1EBs2sIc;^!t=BX0+jZy4SV4;q9r;R}uYa zS*}l3H&^2zutJ?0KBR=4Za<5YFkDy&3zN4`Av$jR$p9P*bzIqr+ibvi8Ym4iEdC<< zCOzsvf*-W77A0i8FJZLY(7#o!+J;sEw#XZJS6SPdtJ!Q%I&@h~t(Xmj$LIT){RePY JU6%?7000JG`xgKJ From cd87508e70fc8c665872de1a757cb1fafe19b55c Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sun, 3 Nov 2019 10:00:54 -0600 Subject: [PATCH 006/250] nomos mac notes --- spdx-scanner/mac-notes.md | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 spdx-scanner/mac-notes.md diff --git a/spdx-scanner/mac-notes.md b/spdx-scanner/mac-notes.md new file mode 100644 index 0000000000..f766a60d2a --- /dev/null +++ b/spdx-scanner/mac-notes.md @@ -0,0 +1,43 @@ +# augur_sbom_scanner +Goal: This will be a worker. For now, it runs augur-sbom, which is installed separately. + +REMEMBER: Be in your virtual environment. + + +## To Run to Gather License Information: +1. Install `augur-spdx` : `git clone https://github.com/chaoss/augur-spdx.git` +2. `make install` +2. Run `dosocs2 newconfig` +3. Replace contents with augur configuration: +``` +connection_uri = postgresql://user:pasword@host:port/database + +schema = spdx + +default_scanners = nomos + +echo = False + +scanner_nomos_path = /usr/local/share/fossology/nomos/agent/nomossa +``` +4. Run `python director.py` + +## Pre-Requisites +### Mac OSX +`brew install cmake autoconf automake libtool pkg-config glib libzip libusb python3 qt5 boost check fftw json-c` + +qt is keg-only, which means it was not symlinked into /usr/local, +because Qt 5 has CMake issues when linked. + +If you need to have qt first in your PATH run: + echo 'export PATH="/usr/local/opt/qt/bin:$PATH"' >> ~/.zshrc + +For compilers to find qt you may need to set: + export LDFLAGS="-L/usr/local/opt/qt/lib" + export CPPFLAGS="-I/usr/local/opt/qt/include" + +For pkg-config to find qt you may need to set: + export PKG_CONFIG_PATH="/usr/local/opt/qt/lib/pkgconfig" + +5. Edit the augur_sbom_config.json with db credentials (Yes, redundent). +6. From 4c8738ba5685896ade7c51a848951e92037d221e Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Mon, 4 Nov 2019 08:40:09 -0600 Subject: [PATCH 007/250] repo info hanging task bug fixed --- workers/repo_info_worker/repo_info_worker/worker.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/workers/repo_info_worker/repo_info_worker/worker.py b/workers/repo_info_worker/repo_info_worker/worker.py index d01891b0b9..82d2955596 100644 --- a/workers/repo_info_worker/repo_info_worker/worker.py +++ b/workers/repo_info_worker/repo_info_worker/worker.py @@ -164,9 +164,8 @@ def cancel(self): def run(self): logging.info("Running...") - if self._child is None: - self._child = Process(target=self.collect, args=()) - self._child.start() + self._child = Process(target=self.collect, args=()) + self._child.start() def collect(self, repos=None): From 0da31167239f0d3969481c39b334f9576dc1bd39 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 4 Nov 2019 10:15:21 -0600 Subject: [PATCH 008/250] augur kill now checks for a virtual environment AND kills augur. --- util/scripts/control/augurkill.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/scripts/control/augurkill.sh b/util/scripts/control/augurkill.sh index 0b415a73a6..9c6eeea3ca 100755 --- a/util/scripts/control/augurkill.sh +++ b/util/scripts/control/augurkill.sh @@ -2,12 +2,12 @@ if [[ "$VIRTUAL_ENV" ]]; then echo "Killing augur processes." - # ps aux | grep -ie $VIRTUAL_ENV/ | awk '{print "kill -9 " $2}' - # ps -ef | grep -ie $VIRTUAL_ENV/ | grep -v grep | awk '{print $2}' | xargs kill + ps aux | grep -ie $VIRTUAL_ENV/ | awk '{print "kill -9 " $2}' + ps -ef | grep -ie $VIRTUAL_ENV/ | grep -v grep | awk '{print $2}' | xargs kill echo "Killing. worker processes" - # ps aux | grep -ie $VIRTUAL_ENV/ | grep -ie bin | grep worker | awk '{print "kill -9 " $2}' - # ps -ef | grep -ie $VIRTUAL_ENV/ | grep -v grep | awk '{print $2}' | xargs kill + ps aux | grep -ie $VIRTUAL_ENV/ | grep -ie bin | grep worker | awk '{print "kill -9 " $2}' + ps -ef | grep -ie $VIRTUAL_ENV/ | grep -v grep | awk '{print $2}' | xargs kill echo "O Burr, O Burr, what hast thou done?" echo "Thou hast shooted dead great Hamilton." From bc659154eb337e25a3d1118af1f7f59fc95b4b1f Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 4 Nov 2019 11:57:58 -0600 Subject: [PATCH 009/250] worker start script --- workers_start.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 workers_start.sh diff --git a/workers_start.sh b/workers_start.sh new file mode 100644 index 0000000000..9fd63630a7 --- /dev/null +++ b/workers_start.sh @@ -0,0 +1,30 @@ +#!/bin/bash + + +cd workers/facade_worker
 +nohup facade_worker_start >f.log 2>f.err & +cd ../.. + +cd workers/github_worker +nohup github_worker_start >gw.log 2>gw.err & +cd ../.. + +cd workers/repo_info_worker +nohup repo_info_worker_start >riw.log 2>riw.err & +cd ../.. + +cd workers/pull_request_worker +nohup pull_request_worker_start >pr.log 2>pr.err & +cd ../.. + +cd workers/linux_badge_worker +nohup linux_badge_worker_start >lbw.log 2>lbw.err & +cd ../.. + +cd workers/value_worker +nohup value_worker_start >vw.log 2>vw.err & +cd ../.. + +cd workers/insight_worker +nohup insight_worker_start >iw.log 2>vw.err & +cd ../.. From 83d5bd9aa7170e71d21d88fe08c445260ff927c8 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 4 Nov 2019 12:05:27 -0600 Subject: [PATCH 010/250] fex --- workers_start.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/workers_start.sh b/workers_start.sh index 9fd63630a7..ae271f7745 100644 --- a/workers_start.sh +++ b/workers_start.sh @@ -4,27 +4,34 @@ cd workers/facade_worker
 nohup facade_worker_start >f.log 2>f.err & cd ../.. +pwd cd workers/github_worker nohup github_worker_start >gw.log 2>gw.err & cd ../.. +pwd cd workers/repo_info_worker nohup repo_info_worker_start >riw.log 2>riw.err & cd ../.. +pwd cd workers/pull_request_worker nohup pull_request_worker_start >pr.log 2>pr.err & cd ../.. +pwd cd workers/linux_badge_worker nohup linux_badge_worker_start >lbw.log 2>lbw.err & cd ../.. +pwd cd workers/value_worker nohup value_worker_start >vw.log 2>vw.err & cd ../.. +pwd cd workers/insight_worker -nohup insight_worker_start >iw.log 2>vw.err & +nohup insight_worker_start >iw.log 2>iw.err & cd ../.. +pwd From 551cf97e9939ebb283c1e1f61e93ef6e54632ae7 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 4 Nov 2019 18:45:01 -0600 Subject: [PATCH 011/250] Add Basic OSI Approval Metric Signed-off-by: Matt Snell --- .../src/components/charts/OSIapproved.json | 403 ++++++++++++++++++ frontend/src/components/charts/OsiCard.vue | 116 +++++ frontend/src/views/RiskMetrics.vue | 12 +- 3 files changed, 530 insertions(+), 1 deletion(-) create mode 100644 frontend/src/components/charts/OSIapproved.json create mode 100644 frontend/src/components/charts/OsiCard.vue diff --git a/frontend/src/components/charts/OSIapproved.json b/frontend/src/components/charts/OSIapproved.json new file mode 100644 index 0000000000..1a31590f4f --- /dev/null +++ b/frontend/src/components/charts/OSIapproved.json @@ -0,0 +1,403 @@ +{ + "0BSD": true, + "AAL": true, + "ADSL": false, + "AFL-1.1": true, + "AFL-1.2": true, + "AFL-2.0": true, + "AFL-2.1": true, + "AFL-3.0": true, + "AGPL-1.0": false, + "AGPL-1.0-only": false, + "AGPL-1.0-or-later": false, + "AGPL-3.0": true, + "AGPL-3.0-only": true, + "AGPL-3.0-or-later": true, + "AMDPLPA": false, + "AML": false, + "AMPAS": false, + "ANTLR-PD": false, + "APAFML": false, + "APL-1.0": true, + "APSL-1.0": true, + "APSL-1.1": true, + "APSL-1.2": true, + "APSL-2.0": true, + "Abstyles": false, + "Adobe-2006": false, + "Adobe-Glyph": false, + "Afmparse": false, + "Aladdin": false, + "Apache-1.0": false, + "Apache-1.1": true, + "Apache-2.0": true, + "Artistic-1.0": true, + "Artistic-1.0-Perl": true, + "Artistic-1.0-cl8": true, + "Artistic-2.0": true, + "BSD-1-Clause": false, + "BSD-2-Clause": true, + "BSD-2-Clause-FreeBSD": false, + "BSD-2-Clause-NetBSD": false, + "BSD-2-Clause-Patent": true, + "BSD-3-Clause": true, + "BSD-3-Clause-Attribution": false, + "BSD-3-Clause-Clear": false, + "BSD-3-Clause-LBNL": true, + "BSD-3-Clause-No-Nuclear-License": false, + "BSD-3-Clause-No-Nuclear-License-2014": false, + "BSD-3-Clause-No-Nuclear-Warranty": false, + "BSD-3-Clause-Open-MPI": false, + "BSD-4-Clause": false, + "BSD-4-Clause-UC": false, + "BSD-Protection": false, + "BSD-Source-Code": false, + "BSL-1.0": true, + "Bahyph": false, + "Barr": false, + "Beerware": false, + "BitTorrent-1.0": false, + "BitTorrent-1.1": false, + "BlueOak-1.0.0": false, + "Borceux": false, + "CATOSL-1.1": true, + "CC-BY-1.0": false, + "CC-BY-2.0": false, + "CC-BY-2.5": false, + "CC-BY-3.0": false, + "CC-BY-4.0": false, + "CC-BY-NC-1.0": false, + "CC-BY-NC-2.0": false, + "CC-BY-NC-2.5": false, + "CC-BY-NC-3.0": false, + "CC-BY-NC-4.0": false, + "CC-BY-NC-ND-1.0": false, + "CC-BY-NC-ND-2.0": false, + "CC-BY-NC-ND-2.5": false, + "CC-BY-NC-ND-3.0": false, + "CC-BY-NC-ND-4.0": false, + "CC-BY-NC-SA-1.0": false, + "CC-BY-NC-SA-2.0": false, + "CC-BY-NC-SA-2.5": false, + "CC-BY-NC-SA-3.0": false, + "CC-BY-NC-SA-4.0": false, + "CC-BY-ND-1.0": false, + "CC-BY-ND-2.0": false, + "CC-BY-ND-2.5": false, + "CC-BY-ND-3.0": false, + "CC-BY-ND-4.0": false, + "CC-BY-SA-1.0": false, + "CC-BY-SA-2.0": false, + "CC-BY-SA-2.5": false, + "CC-BY-SA-3.0": false, + "CC-BY-SA-4.0": false, + "CC-PDDC": false, + "CC0-1.0": false, + "CDDL-1.0": true, + "CDDL-1.1": false, + "CDLA-Permissive-1.0": false, + "CDLA-Sharing-1.0": false, + "CECILL-1.0": false, + "CECILL-1.1": false, + "CECILL-2.0": false, + "CECILL-2.1": true, + "CECILL-B": false, + "CECILL-C": false, + "CERN-OHL-1.1": false, + "CERN-OHL-1.2": false, + "CNRI-Jython": false, + "CNRI-Python": true, + "CNRI-Python-GPL-Compatible": false, + "CPAL-1.0": true, + "CPL-1.0": true, + "CPOL-1.02": false, + "CUA-OPL-1.0": true, + "Caldera": false, + "ClArtistic": false, + "Condor-1.1": false, + "Crossword": false, + "CrystalStacker": false, + "Cube": false, + "D-FSL-1.0": false, + "DOC": false, + "DSDP": false, + "Dotseqn": false, + "ECL-1.0": true, + "ECL-2.0": true, + "EFL-1.0": true, + "EFL-2.0": true, + "EPL-1.0": true, + "EPL-2.0": true, + "EUDatagrid": true, + "EUPL-1.0": false, + "EUPL-1.1": true, + "EUPL-1.2": true, + "Entessa": true, + "ErlPL-1.1": false, + "Eurosym": false, + "FSFAP": false, + "FSFUL": false, + "FSFULLR": false, + "FTL": false, + "Fair": true, + "Frameworx-1.0": true, + "FreeImage": false, + "GFDL-1.1": false, + "GFDL-1.1-only": false, + "GFDL-1.1-or-later": false, + "GFDL-1.2": false, + "GFDL-1.2-only": false, + "GFDL-1.2-or-later": false, + "GFDL-1.3": false, + "GFDL-1.3-only": false, + "GFDL-1.3-or-later": false, + "GL2PS": false, + "GPL-1.0": false, + "GPL-1.0+": false, + "GPL-1.0-only": false, + "GPL-1.0-or-later": false, + "GPL-2.0": true, + "GPL-2.0+": true, + "GPL-2.0-only": true, + "GPL-2.0-or-later": true, + "GPL-2.0-with-GCC-exception": false, + "GPL-2.0-with-autoconf-exception": false, + "GPL-2.0-with-bison-exception": false, + "GPL-2.0-with-classpath-exception": false, + "GPL-2.0-with-font-exception": false, + "GPL-3.0": true, + "GPL-3.0+": true, + "GPL-3.0-only": true, + "GPL-3.0-or-later": true, + "GPL-3.0-with-GCC-exception": true, + "GPL-3.0-with-autoconf-exception": false, + "Giftware": false, + "Glide": false, + "Glulxe": false, + "HPND": true, + "HPND-sell-variant": false, + "HaskellReport": false, + "IBM-pibs": false, + "ICU": false, + "IJG": false, + "IPA": true, + "IPL-1.0": true, + "ISC": true, + "ImageMagick": false, + "Imlib2": false, + "Info-ZIP": false, + "Intel": true, + "Intel-ACPI": false, + "Interbase-1.0": false, + "JPNIC": false, + "JSON": false, + "JasPer-2.0": false, + "LAL-1.2": false, + "LAL-1.3": false, + "LGPL-2.0": true, + "LGPL-2.0+": true, + "LGPL-2.0-only": true, + "LGPL-2.0-or-later": true, + "LGPL-2.1": true, + "LGPL-2.1+": true, + "LGPL-2.1-only": true, + "LGPL-2.1-or-later": true, + "LGPL-3.0": true, + "LGPL-3.0+": true, + "LGPL-3.0-only": true, + "LGPL-3.0-or-later": true, + "LGPLLR": false, + "LPL-1.0": true, + "LPL-1.02": true, + "LPPL-1.0": false, + "LPPL-1.1": false, + "LPPL-1.2": false, + "LPPL-1.3a": false, + "LPPL-1.3c": true, + "Latex2e": false, + "Leptonica": false, + "LiLiQ-P-1.1": true, + "LiLiQ-R-1.1": true, + "LiLiQ-Rplus-1.1": true, + "Libpng": false, + "Linux-OpenIB": false, + "MIT": true, + "MIT-0": true, + "MIT-CMU": false, + "MIT-advertising": false, + "MIT-enna": false, + "MIT-feh": false, + "MITNFA": false, + "MPL-1.0": true, + "MPL-1.1": true, + "MPL-2.0": true, + "MPL-2.0-no-copyleft-exception": true, + "MS-PL": true, + "MS-RL": true, + "MTLL": false, + "MakeIndex": false, + "MirOS": true, + "Motosoto": true, + "Multics": true, + "Mup": false, + "NASA-1.3": true, + "NBPL-1.0": false, + "NCSA": true, + "NGPL": true, + "NLOD-1.0": false, + "NLPL": false, + "NOSL": false, + "NPL-1.0": false, + "NPL-1.1": false, + "NPOSL-3.0": true, + "NRL": false, + "NTP": true, + "Naumen": true, + "Net-SNMP": false, + "NetCDF": false, + "Newsletr": false, + "Nokia": true, + "Noweb": false, + "Nunit": false, + "OCCT-PL": false, + "OCLC-2.0": true, + "ODC-By-1.0": false, + "ODbL-1.0": false, + "OFL-1.0": false, + "OFL-1.1": true, + "OGL-Canada-2.0": false, + "OGL-UK-1.0": false, + "OGL-UK-2.0": false, + "OGL-UK-3.0": false, + "OGTSL": true, + "OLDAP-1.1": false, + "OLDAP-1.2": false, + "OLDAP-1.3": false, + "OLDAP-1.4": false, + "OLDAP-2.0": false, + "OLDAP-2.0.1": false, + "OLDAP-2.1": false, + "OLDAP-2.2": false, + "OLDAP-2.2.1": false, + "OLDAP-2.2.2": false, + "OLDAP-2.3": false, + "OLDAP-2.4": false, + "OLDAP-2.5": false, + "OLDAP-2.6": false, + "OLDAP-2.7": false, + "OLDAP-2.8": false, + "OML": false, + "OPL-1.0": false, + "OSET-PL-2.1": true, + "OSL-1.0": true, + "OSL-1.1": false, + "OSL-2.0": true, + "OSL-2.1": true, + "OSL-3.0": true, + "OpenSSL": false, + "PDDL-1.0": false, + "PHP-3.0": true, + "PHP-3.01": false, + "Parity-6.0.0": false, + "Plexus": false, + "PostgreSQL": true, + "Python-2.0": true, + "QPL-1.0": true, + "Qhull": false, + "RHeCos-1.1": false, + "RPL-1.1": true, + "RPL-1.5": true, + "RPSL-1.0": true, + "RSA-MD": false, + "RSCPL": true, + "Rdisc": false, + "Ruby": false, + "SAX-PD": false, + "SCEA": false, + "SGI-B-1.0": false, + "SGI-B-1.1": false, + "SGI-B-2.0": false, + "SHL-0.5": false, + "SHL-0.51": false, + "SISSL": true, + "SISSL-1.2": false, + "SMLNJ": false, + "SMPPL": false, + "SNIA": false, + "SPL-1.0": true, + "SSH-OpenSSH": false, + "SSH-short": false, + "SSPL-1.0": false, + "SWL": false, + "Saxpath": false, + "Sendmail": false, + "Sendmail-8.23": false, + "SimPL-2.0": true, + "Sleepycat": true, + "Spencer-86": false, + "Spencer-94": false, + "Spencer-99": false, + "StandardML-NJ": false, + "SugarCRM-1.1.3": false, + "TAPR-OHL-1.0": false, + "TCL": false, + "TCP-wrappers": false, + "TMate": false, + "TORQUE-1.1": false, + "TOSL": false, + "TU-Berlin-1.0": false, + "TU-Berlin-2.0": false, + "UCL-1.0": true, + "UPL-1.0": true, + "Unicode-DFS-2015": false, + "Unicode-DFS-2016": false, + "Unicode-TOU": false, + "Unlicense": false, + "VOSTROM": false, + "VSL-1.0": true, + "Vim": false, + "W3C": true, + "W3C-19980720": false, + "W3C-20150513": false, + "WTFPL": false, + "Watcom-1.0": true, + "Wsuipa": false, + "X11": false, + "XFree86-1.1": false, + "XSkat": false, + "Xerox": false, + "Xnet": true, + "YPL-1.0": false, + "YPL-1.1": false, + "ZPL-1.1": false, + "ZPL-2.0": true, + "ZPL-2.1": false, + "Zed": false, + "Zend-2.0": false, + "Zimbra-1.3": false, + "Zimbra-1.4": false, + "Zlib": true, + "blessing": false, + "bzip2-1.0.5": false, + "bzip2-1.0.6": false, + "copyleft-next-0.3.0": false, + "copyleft-next-0.3.1": false, + "curl": false, + "diffmark": false, + "dvipdfm": false, + "eCos-2.0": false, + "eGenix": false, + "etalab-2.0": false, + "gSOAP-1.3b": false, + "gnuplot": false, + "iMatix": false, + "libpng-2.0": false, + "libtiff": false, + "mpich2": false, + "psfrag": false, + "psutils": false, + "wxWindows": false, + "xinetd": false, + "xpp": false, + "zlib-acknowledgement": false +} diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue new file mode 100644 index 0000000000..cf7a511207 --- /dev/null +++ b/frontend/src/components/charts/OsiCard.vue @@ -0,0 +1,116 @@ + + + diff --git a/frontend/src/views/RiskMetrics.vue b/frontend/src/views/RiskMetrics.vue index 1d282ac380..a29fe71d63 100644 --- a/frontend/src/views/RiskMetrics.vue +++ b/frontend/src/views/RiskMetrics.vue @@ -68,6 +68,14 @@ title="License Coverage" source="sbom" > +

+ + @@ -89,6 +97,7 @@ import CiiTable from "@/components/charts/CiiTable.vue"; import DownloadCard from "@/components/charts/DownloadCard.vue"; import CoverageCard from "@/components/charts/CoverageCard.vue"; + import OsiCard from "@/components/charts/OsiCard.vue"; // import PieChart from "@/components/charts/PieChart.vue"; import Licenses from "@/components/Licenses.json"; import router from "@/router"; @@ -103,7 +112,8 @@ LicenseTable, CiiTable, DownloadCard, - CoverageCard + CoverageCard, + OsiCard // PieChart, }, methods: { From 408108018382a79dfdf0d5d5cd103bfc1aca0e07 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 5 Nov 2019 11:34:27 -0600 Subject: [PATCH 012/250] Fix Error & Suppress Errors on Required Calls Signed-off-by: Matt Snell --- frontend/src/components/charts/OsiCard.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue index cf7a511207..71a49637c0 100644 --- a/frontend/src/components/charts/OsiCard.vue +++ b/frontend/src/components/charts/OsiCard.vue @@ -4,7 +4,7 @@

{{ OSIpercent[0] }}%

-


+

OSI Approved: {{ OSIpercent[1] }}
Not OSI Approved: {{ OSIpercent[2] }}
Total: {{ OSIpercent[3] }}
@@ -18,6 +18,7 @@ import Spinner from '@/components/Spinner.vue' import { Component, Vue } from 'vue-property-decorator'; import {mapActions, mapGetters} from "vuex"; + import * as check from './OSIapproved.json'; const AppProps = Vue.extend({ props: { @@ -26,15 +27,13 @@ source: String, headers: Array, fields: Array, - ldata: Array, + ldata: Array } }) - import * as check from './OSIapproved.json'; @Component({ components: { - Spinner, - check + Spinner }, computed: { OSIpercent: function() { @@ -42,9 +41,11 @@ let fcount = 0 console.log("ELEMENT") console.log(check) + // @ts-ignore for (let el of this.values) { let count = el['count']; let shortname = el['short_name']; + // @ts-ignore let determin = check.default[shortname]; if (determin === true){ tcount += count From 9d36fc4c32333a72c007df5bb1966a0a8c023fdb Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Tue, 5 Nov 2019 13:29:53 -0600 Subject: [PATCH 013/250] refactor github contributor model to update columns with missing information and insert aliases correctly --- augur/housekeeper/housekeeper.py | 9 +- workers/github_worker/github_worker/worker.py | 347 ++++++++++++------ 2 files changed, 240 insertions(+), 116 deletions(-) diff --git a/augur/housekeeper/housekeeper.py b/augur/housekeeper/housekeeper.py index 45c12b3aa7..4b108c4ef6 100644 --- a/augur/housekeeper/housekeeper.py +++ b/augur/housekeeper/housekeeper.py @@ -62,10 +62,11 @@ def updater_process(broker_host, broker_port, broker, model, given, delay, repos compatible_worker_found = False # Waiting for compatible worker while True: - for worker in list(broker._getvalue().keys()): - # logging.info("{} {} {} {} {}".format(worker, model, broker[worker]['models'], given, broker[worker]['given'])) - if model in broker[worker]['models'] and given in broker[worker]['given']: - compatible_worker_found = True + if not compatible_worker_found: + for worker in list(broker._getvalue().keys()): + # logging.info("{} {} {} {}".format(worker, model, broker[worker], given)) + if model in broker[worker]['models'] and given in broker[worker]['given']: + compatible_worker_found = True if compatible_worker_found: logging.info("Housekeeper recognized that the broker has a worker that " + "can handle the {} model... beginning to distribute maintained tasks".format(model)) diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 95d4118833..5eb73b7486 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -145,14 +145,21 @@ def __init__(self, config, task=None): self.cntrb_id_inc = (cntrb_start + 1) self.msg_id_inc = (msg_start + 1) - try: - logging.info("Sending hello message to broker... @ -> {} with info: {}\n".format('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'], self.config['broker_port']), specs)) - requests.post('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'], self.config['broker_port']), json=specs) #hello message - except: - logging.info("Broker's port is busy, worker will not be able to accept tasks, " - "please restart Augur if you want this worker to attempt connection again.") + connected = False + for i in range(5): + try: + logging.info("attempt {}".format(i)) + if i > 0: + time.sleep(10) + requests.post('http://{}:{}/api/unstable/workers'.format( + self.config['broker_host'],self.config['broker_port']), json=specs) + logging.info("Connection to the broker was successful") + connected = True + break + except requests.exceptions.ConnectionError: + logging.error('Cannot connect to the broker. Trying again...') + if not connected: + sys.exit('Could not connect to the broker after 5 attempts! Quitting...') def update_config(self, config): @@ -219,9 +226,8 @@ def run(self): Gets run whenever a new task is added """ logging.info("Running...\n") - if self._child is None: - self._child = Process(target=self.collect, args=()) - self._child.start() + self._child = Process(target=self.collect, args=()) + self._child.start() def collect(self): """ Function to process each entry in the worker's task queue @@ -250,7 +256,7 @@ def collect(self): try: github_url = message.entry_info['task']['given']['github_url'] if message.entry_info['task']['models'][0] == 'contributors': - self.search_users({'github_url': github_url, 'repo_id': message.entry_info['repo_id']}) + self.contributor_model({'github_url': github_url, 'repo_id': message.entry_info['repo_id']}) if message.entry_info['task']['models'][0] == 'issues': self.query_issues({'github_url': github_url, 'repo_id': message.entry_info['repo_id']}) except Exception as e: @@ -288,58 +294,157 @@ def collect(self): self.results_counter = 0 pass - def search_users(self, entry_info): - logging.info("Searching users for commits from the facade worker for repo with entry info: {}".format(entry_info)) + def insert_commit_contributors(self, entry_info): + cntrb = { + "cntrb_login": contributor['login'], + "cntrb_created_at": contributor['created_at'], + "cntrb_email": email, + "cntrb_company": company, + "cntrb_location": location, + # "cntrb_type": , dont have a use for this as of now ... let it default to null + "cntrb_canonical": canonical_email, + "gh_user_id": contributor['id'], + "gh_login": contributor['login'], + "gh_url": contributor['url'], + "gh_html_url": contributor['html_url'], + "gh_node_id": contributor['node_id'], + "gh_avatar_url": contributor['avatar_url'], + "gh_gravatar_id": contributor['gravatar_id'], + "gh_followers_url": contributor['followers_url'], + "gh_following_url": contributor['following_url'], + "gh_gists_url": contributor['gists_url'], + "gh_starred_url": contributor['starred_url'], + "gh_subscriptions_url": contributor['subscriptions_url'], + "gh_organizations_url": contributor['organizations_url'], + "gh_repos_url": contributor['repos_url'], + "gh_events_url": contributor['events_url'], + "gh_received_events_url": contributor['received_events_url'], + "gh_type": contributor['type'], + "gh_site_admin": contributor['site_admin'], + "tool_source": self.tool_source, + "tool_version": self.tool_version, + "data_source": self.data_source, + 'cntrb_full_name': cmt_cntrb['fname'] + ' ' + cmt_cntrb['lname'] + } + result = self.db.execute(self.contributors_table.insert().values(cntrb)) + logging.info("Primary key inserted into the contributors table: {}".format(result.inserted_primary_key)) + self.results_counter += 1 + + logging.info("Inserted contributor: " + contributor['login'] + "\n") + + # Increment our global track of the cntrb id for the possibility of it being used as a FK + self.cntrb_id_inc = int(result.inserted_primary_key[0]) + + def contributor_model(self, entry_info): + logging.info("Searching users for commits from the facade worker for repo with entry info: {}\n".format(entry_info)) + + # Get all distinct combinations of emails and names by querying the repo's commits userSQL = s.sql.text(""" - SELECT distinct(cmt_author_name), cmt_author_email, - cmt_committer_name, cmt_committer_email - FROM commits + SELECT cmt_author_name AS commit_name, cntrb_id, cmt_author_raw_email AS commit_email, cntrb_email, + cntrb_full_name, cntrb_login, cntrb_canonical, + cntrb_company, cntrb_created_at::timestamp, cntrb_type, cntrb_fake, cntrb_deleted, cntrb_long, + cntrb_lat, cntrb_country_code, cntrb_state, cntrb_city, cntrb_location, gh_user_id, + gh_login, gh_url, gh_html_url, gh_node_id, gh_avatar_url, gh_gravatar_id, gh_followers_url, + gh_following_url, gh_gists_url, gh_starred_url, gh_subscriptions_url, gh_organizations_url, + gh_repos_url, gh_events_url, gh_received_events_url, gh_type, gh_site_admin + FROM commits, contributors + WHERE repo_id = {} + AND contributors.cntrb_full_name = cmt_author_name + UNION + SELECT cmt_author_name AS commit_name, cntrb_id, cmt_author_raw_email AS commit_email, cntrb_email, + cntrb_full_name, cntrb_login, cntrb_canonical, + cntrb_company, cntrb_created_at::timestamp, cntrb_type, cntrb_fake, cntrb_deleted, cntrb_long, + cntrb_lat, cntrb_country_code, cntrb_state, cntrb_city, cntrb_location, gh_user_id, + gh_login, gh_url, gh_html_url, gh_node_id, gh_avatar_url, gh_gravatar_id, gh_followers_url, + gh_following_url, gh_gists_url, gh_starred_url, gh_subscriptions_url, gh_organizations_url, + gh_repos_url, gh_events_url, gh_received_events_url, gh_type, gh_site_admin + FROM commits, contributors WHERE repo_id = {} - """.format(entry_info['repo_id'])) - # cmt_author_raw_email - # cmt_committer_raw_email + AND contributors.cntrb_email = cmt_author_raw_email + UNION + SELECT cmt_committer_name AS commit_name, cntrb_id, cmt_committer_raw_email AS commit_email, + cntrb_email, cntrb_full_name, cntrb_login, cntrb_canonical, + cntrb_company, cntrb_created_at::timestamp, cntrb_type, cntrb_fake, cntrb_deleted, cntrb_long, + cntrb_lat, cntrb_country_code, cntrb_state, cntrb_city, cntrb_location, gh_user_id, + gh_login, gh_url, gh_html_url, gh_node_id, gh_avatar_url, gh_gravatar_id, gh_followers_url, + gh_following_url, gh_gists_url, gh_starred_url, gh_subscriptions_url, gh_organizations_url, + gh_repos_url, gh_events_url, gh_received_events_url, gh_type, gh_site_admin + FROM commits, contributors + WHERE repo_id = {} + AND contributors.cntrb_full_name = cmt_committer_name + UNION + SELECT cmt_committer_name AS commit_name, cntrb_id, cmt_committer_raw_email AS commit_email, + cntrb_email, cntrb_full_name, cntrb_login, cntrb_canonical, + cntrb_company, cntrb_created_at::timestamp, cntrb_type, cntrb_fake, cntrb_deleted, cntrb_long, + cntrb_lat, cntrb_country_code, cntrb_state, cntrb_city, cntrb_location, gh_user_id, + gh_login, gh_url, gh_html_url, gh_node_id, gh_avatar_url, gh_gravatar_id, gh_followers_url, + gh_following_url, gh_gists_url, gh_starred_url, gh_subscriptions_url, gh_organizations_url, + gh_repos_url, gh_events_url, gh_received_events_url, gh_type, gh_site_admin + FROM commits, contributors + WHERE repo_id = {} + AND contributors.cntrb_email = cmt_committer_raw_email + ORDER BY cntrb_id + """.format(entry_info['repo_id'],entry_info['repo_id'],entry_info['repo_id'],entry_info['repo_id'])) + rs = pd.read_sql(userSQL, self.db, params={}) commit_cntrbs = rs.to_json(orient="records") commit_cntrbs = json.loads(commit_cntrbs) - logging.info("We found {} distinct contributors to search for in this repo (repo_id = {})".format( + logging.info("We found {} distinct emails to search for in this repo (repo_id = {})".format( len(commit_cntrbs), entry_info['repo_id'])) - # Get all contributors in the database to check for duplicates - pseudo_key_gh = 'login' - pseudo_key_augur = 'cntrb_login' - table = 'contributors' - cntrb_table_values = self.get_table_values([pseudo_key_augur, 'cntrb_email', 'cntrb_id'], [table]) - + # For every unique commit contributor info combination... for tuple in commit_cntrbs: - try: - author = {'fname': tuple['cmt_author_name'].split()[0], 'lname': tuple['cmt_author_name'].split()[1], - 'email': tuple['cmt_author_email']} - committer = {'fname': tuple['cmt_committer_name'].split()[0], 'lname': tuple['cmt_committer_name'].split()[1], - 'email': tuple['cmt_committer_email']} - except: - author = {'fname': tuple['cmt_author_name'].split()[0], 'lname': '', - 'email': tuple['cmt_author_email']} - committer = {'fname': tuple['cmt_committer_name'].split()[0], 'lname': '', - 'email': tuple['cmt_committer_email']} - if author == committer: - contributors = [author] - else: - contributors = [author, committer] - for cmt_cntrb in contributors: - url = 'https://api.github.com/search/users?q={}+in:email+fullname:{}+{}'.format( - cmt_cntrb['email'],cmt_cntrb['fname'],cmt_cntrb['lname']) + # If cntrb_full_name column is not filled, go ahead and fill it bc we have that info + if not tuple['cntrb_full_name'] and tuple['commit_name'] and tuple['cntrb_id']: + name_col = { + 'cntrb_full_name': tuple['commit_name'] + } + + result = self.db.execute(self.contributors_table.update().where( + self.contributors_table.c.cntrb_id==tuple['cntrb_id']).values(name_col)) + logging.info("Inserted cntrb_full_name column for existing tuple in the contributors " + "table with email: {}\n".format(tuple['cntrb_email'])) + + # If cntrb_canonical column is not filled, go ahead and fill it w main email bc + # an old version of the worker did not + if not tuple['cntrb_canonical'] and tuple['cntrb_email']: + canonical_col = { + 'cntrb_canonical': tuple['cntrb_email'] + } + + result = self.db.execute(self.contributors_table.update().where( + self.contributors_table.c.cntrb_id==tuple['cntrb_id']).values(canonical_col)) + logging.info("Inserted cntrb_canonical column for existing tuple in the contributors " + "table with email: {}\n".format(tuple['cntrb_email'])) + + match = None + def search_users(): + # try/except to handle case of a first/last split or just first name + try: + cmt_cntrb = {'fname': tuple['commit_name'].split()[0], 'lname': tuple['commit_name'].split()[1], + 'email': tuple['commit_email']} + url = 'https://api.github.com/search/users?q={}+in:email+fullname:{}+{}'.format( + cmt_cntrb['email'],cmt_cntrb['fname'],cmt_cntrb['lname']) + except: + cmt_cntrb = {'fname': tuple['commit_name'].split()[0], 'lname': '', + 'email': tuple['commit_email']} + url = 'https://api.github.com/search/users?q={}+in:email+fullname:{}'.format( + cmt_cntrb['email'],cmt_cntrb['fname']) + logging.info("Hitting endpoint: " + url + " ...\n") r = requests.get(url=url, headers=self.headers) self.update_rate_limit(r) - results = r.json() + # If no matches or bad response, continue with other contributors if 'total_count' not in results: - continue + logging.info("Search query returned an empty response, moving on...\n") + return if results['total_count'] == 0: - continue + logging.info("Search query did not return any results, moving on...\n") + return - logging.info("When searching for a contributor with info {}, we found the following users: {}".format( + logging.info("When searching for a contributor with info {}, we found the following users: {}\n".format( cmt_cntrb, results)) # Grab first result and make sure it has the highest match score @@ -348,47 +453,20 @@ def search_users(self, entry_info): if item['score'] > match['score']: match = item - # Determine if this searched contributor - match = self.assign_tuple_action([match], cntrb_table_values, - {'cntrb_email': 'email'}, {pseudo_key_augur: pseudo_key_gh}, 'cntrb_id')[0] - cntrb_url = ("https://api.github.com/users/" + match['login']) logging.info("Hitting endpoint: " + cntrb_url + " ...\n") r = requests.get(url=cntrb_url, headers=self.headers) self.update_rate_limit(r) contributor = r.json() - company = None - location = None - email = cmt_cntrb['email'] - canonical_email = cmt_cntrb['email'] - alias = False - if 'company' in contributor: - company = contributor['company'] - if 'location' in contributor: - location = contributor['location'] - if 'email' in contributor: - email = contributor['email'] - if email != cmt_cntrb['email']: - alias = True - - # aliasSQL = s.sql.text(""" - # SELECT canonical_email - # FROM contributors_aliases - # WHERE alias_email = {} - # """.format(contributor['email'])) - # rs = pd.read_sql(aliasSQL, self.db, params={}) - - #rs.iloc[0]["canonical_email"] - - cntrb = { + # Fill in all github information + cntrb_gh_info = { "cntrb_login": contributor['login'], "cntrb_created_at": contributor['created_at'], "cntrb_email": email, - "cntrb_company": company, - "cntrb_location": location, + "cntrb_company": contributor['company'] if 'company' in contributor else None, + "cntrb_location": contributor['location'] if 'location' in contributor else None, # "cntrb_type": , dont have a use for this as of now ... let it default to null - "cntrb_canonical": canonical_email, "gh_user_id": contributor['id'], "gh_login": contributor['login'], "gh_url": contributor['url'], @@ -409,42 +487,64 @@ def search_users(self, entry_info): "gh_site_admin": contributor['site_admin'], "tool_source": self.tool_source, "tool_version": self.tool_version, - "data_source": self.data_source, - 'cntrb_full_name': cmt_cntrb['fname'] + ' ' + cmt_cntrb['lname'] + "data_source": self.data_source } - - # Commit insertion to table - if match['flag'] == 'need_update': - result = self.db.execute(self.contributors_table.update().where( - self.history_table.c.cntrb_email==email).values(cntrb)) - logging.info("Updated tuple in the contributors table with existing email: {}".format(email)) - self.cntrb_id_inc = match['pkey'] - elif match['flag'] == 'need_insertion': + result = self.db.execute(self.contributors_table.update().where( + self.contributors_table.c.cntrb_id==tuple['cntrb_id']).values(cntrb_gh_info)) + logging.info("Updated existing tuple in the contributors table with github info after " + "a successful search query on a facade commit's author : {} {}\n".format(tuple, cntrb_gh_info)) + + # If the contributor already has a login, there is no use in performing the github search + if not tuple['cntrb_login']: + search_users() + + # If this is true, then it is an alias bc the commit has diff email than canonical + if tuple['commit_email'] != tuple['cntrb_email']: + cntrb_email = tuple['cntrb_email'] + commit_email = tuple['commit_email'] + cntrb_id = tuple['cntrb_id'] + # Check existing contributors table tuple + existing_tuples = self.retrieve_tuple({'cntrb_email': tuple['commit_email']}, ['contributors']) + if len(existing_tuples) < 1: + # Prepare tuple for insertion to contributor table (build it off of the tuple queried) + cntrb = tuple + cntrb['cntrb_created_at'] = datetime.datetime.fromtimestamp(cntrb['cntrb_created_at']/1000) + cntrb['cntrb_email'] = tuple['commit_email'] + cntrb["tool_source"] = self.tool_source + cntrb["tool_version"] = self.tool_version + cntrb["data_source"] = self.data_source + del cntrb['commit_name'] + del cntrb['commit_email'] + del cntrb['cntrb_id'] + result = self.db.execute(self.contributors_table.insert().values(cntrb)) - logging.info("Primary key inserted into the contributors table: {}".format(result.inserted_primary_key)) + logging.info("Inserted alias into the contributors table with email: {}\n".format(cntrb['cntrb_email'])) self.results_counter += 1 - - logging.info("Inserted contributor: " + contributor['login'] + "\n") - - # Increment our global track of the cntrb id for the possibility of it being used as a FK self.cntrb_id_inc = int(result.inserted_primary_key[0]) - - if alias: - try: - alias_tuple = { - 'cntrb_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), - 'cntrb_a_id': match['pkey'] if match['flag'] == 'need_update' else int(result.inserted_primary_key[0]), - 'canonical_email': cmt_cntrb['email'], - 'alias_email': contributor['email'], - 'cntrb_active': 1, - "tool_source": self.tool_source, - "tool_version": self.tool_version, - "data_source": self.data_source - } - result = self.db.execute(self.contributors_aliases_table.insert().values(alias_tuple)) - logging.info("Inserted alias with email: {}".format(email)) - except Exception as e: - logging.info("Error inserting alias w emails {} and {}: {}".format(contributor['email'], cmt_cntrb['email'], e)) + alias_id = self.cntrb_id_inc + elif len(existing_tuples) > 1: + logging.info("THERE IS A CASE FOR A DUPLICATE CONTRIBUTOR in the contributors table AND NEED TO ADD DELETION LOGIC\n") + else: + alias_id = existing_tuples[0]['cntrb_id'] + + # Now check existing alias table tuple + existing_tuples = self.retrieve_tuple({'alias_email': commit_email}, ['contributors_aliases']) + if len(existing_tuples) == 0: + alias_tuple = { + 'cntrb_id': cntrb_id, + 'cntrb_a_id': alias_id, + 'canonical_email': cntrb_email, + 'alias_email': commit_email, + 'cntrb_active': 1, + "tool_source": self.tool_source, + "tool_version": self.tool_version, + "data_source": self.data_source + } + result = self.db.execute(self.contributors_aliases_table.insert().values(alias_tuple)) + self.results_counter += 1 + logging.info("Inserted alias with email: {}\n".format(commit_email)) + if len(existing_tuples) > 1: + logging.info("THERE IS A CASE FOR A DUPLICATE CONTRIBUTOR in the alias table AND NEED TO ADD DELETION LOGIC\n") #Register this task as completed self.register_task_completion(entry_info, "contributors") @@ -1034,18 +1134,41 @@ def query_issues(self, entry_info): def get_table_values(self, cols, tables): table_str = tables[0] del tables[0] + col_str = cols[0] del cols[0] + for table in tables: table_str += ", " + table for col in cols: col_str += ", " + col + tableValuesSQL = s.sql.text(""" SELECT {} FROM {} - """.format(col_str, table_str)) + """.format(col_str, table_str)) values = pd.read_sql(tableValuesSQL, self.db, params={}) return values + def retrieve_tuple(self, key_values, tables): + table_str = tables[0] + del tables[0] + + key_values_items = list(key_values.items()) + for col, value in [key_values_items[0]]: + where_str = col + " = '" + value + "'" + del key_values_items[0] + + for col, value in key_values_items: + where_str += ' AND ' + col + " = '" + value + "'" + for table in tables: + table_str += ", " + table + + retrieveTupleSQL = s.sql.text(""" + SELECT * FROM {} WHERE {} + """.format(table_str, where_str)) + values = json.loads(pd.read_sql(retrieveTupleSQL, self.db, params={}).to_json(orient="records")) + return values + def find_id_from_login(self, login): idSQL = s.sql.text(""" SELECT cntrb_id FROM contributors WHERE cntrb_login = '{}' From cb82f7c987cbd0c22820547fc1730207ab775ea1 Mon Sep 17 00:00:00 2001 From: Michael Woodruff Date: Tue, 5 Nov 2019 15:02:07 -0600 Subject: [PATCH 014/250] fix bug in anomalous insight graphs in Dashboard.vue where 'insight' was displaying instead of 'increase' Signed-off-by: Michael Woodruff --- frontend/package-lock.json | 511 ++++++++++++++++++------------- frontend/package.json | 4 +- frontend/src/views/Dashboard.vue | 8 +- package-lock.json | 12 +- 4 files changed, 317 insertions(+), 218 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index ed76de5489..429452b5e5 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -386,9 +386,9 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz", - "integrity": "sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.7.0.tgz", + "integrity": "sha512-vQMV07p+L+jZeUnvX3pEJ9EiXGCjB5CTTvsirFD9rpEuATnoAvLBLoYbw1v5tyn3d2XxSuvEKi8cV3KqYUa0vQ==", "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -699,91 +699,137 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz", - "integrity": "sha512-aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.7.0.tgz", + "integrity": "sha512-y3KYbcfKe+8ziRXiGhhnGrVysDBo5+aJdB+x8sanM0K41cnmK7Q5vBlQLMbOnW/HPjLG9bg7dLgYDQZZG9T09g==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.6.0", + "@babel/helper-create-class-features-plugin": "^7.7.0", "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-typescript": "^7.2.0" }, "dependencies": { - "@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "requires": { - "@babel/highlight": "^7.0.0" - } - }, "@babel/generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", - "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.0.tgz", + "integrity": "sha512-1wdJ6UxHyL1XoJQ119JmvuRX27LRih7iYStMPZOWAjQqeAabFg3dYXKMpgihma+to+0ADsTVVt6oRyUxWZw6Mw==", "requires": { - "@babel/types": "^7.6.3", + "@babel/types": "^7.7.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-create-class-features-plugin": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz", - "integrity": "sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.7.0.tgz", + "integrity": "sha512-MZiB5qvTWoyiFOgootmRSDV1udjIqJW/8lmxgzKq6oDqxdmHUjeP2ZUOmgHdYjmUVNABqRrHjYAYRvj8Eox/UA==", "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-member-expression-to-functions": "^7.5.5", - "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/helper-function-name": "^7.7.0", + "@babel/helper-member-expression-to-functions": "^7.7.0", + "@babel/helper-optimise-call-expression": "^7.7.0", "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.5.5", - "@babel/helper-split-export-declaration": "^7.4.4" + "@babel/helper-replace-supers": "^7.7.0", + "@babel/helper-split-export-declaration": "^7.7.0" + } + }, + "@babel/helper-function-name": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.0.tgz", + "integrity": "sha512-tDsJgMUAP00Ugv8O2aGEua5I2apkaQO7lBGUq1ocwN3G23JE5Dcq0uh3GvFTChPa4b40AWiAsLvCZOA2rdnQ7Q==", + "requires": { + "@babel/helper-get-function-arity": "^7.7.0", + "@babel/template": "^7.7.0", + "@babel/types": "^7.7.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.0.tgz", + "integrity": "sha512-tLdojOTz4vWcEnHWHCuPN5P85JLZWbm5Fx5ZsMEMPhF3Uoe3O7awrbM2nQ04bDOUToH/2tH/ezKEOR8zEYzqyw==", + "requires": { + "@babel/types": "^7.7.0" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz", - "integrity": "sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.0.tgz", + "integrity": "sha512-QaCZLO2RtBcmvO/ekOLp8p7R5X2JriKRizeDpm5ChATAFWrrYDcDxPuCIBXKyBjY+i1vYSdcUTMIb8psfxHDPA==", + "requires": { + "@babel/types": "^7.7.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.0.tgz", + "integrity": "sha512-48TeqmbazjNU/65niiiJIJRc5JozB8acui1OS7bSd6PgxfuovWsvjfWSzlgx+gPFdVveNzUdpdIg5l56Pl5jqg==", "requires": { - "@babel/types": "^7.5.5" + "@babel/types": "^7.7.0" } }, "@babel/helper-replace-supers": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz", - "integrity": "sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.7.0.tgz", + "integrity": "sha512-5ALYEul5V8xNdxEeWvRsBzLMxQksT7MaStpxjJf9KsnLxpAKBtfw5NeMKZJSYDa0lKdOcy0g+JT/f5mPSulUgg==", "requires": { - "@babel/helper-member-expression-to-functions": "^7.5.5", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/traverse": "^7.5.5", - "@babel/types": "^7.5.5" + "@babel/helper-member-expression-to-functions": "^7.7.0", + "@babel/helper-optimise-call-expression": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.0.tgz", + "integrity": "sha512-HgYSI8rH08neWlAH3CcdkFg9qX9YsZysZI5GD8LjhQib/mM0jGOZOVkoUiiV2Hu978fRtjtsGsW6w0pKHUWtqA==", + "requires": { + "@babel/types": "^7.7.0" } }, "@babel/parser": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.0.tgz", + "integrity": "sha512-GqL+Z0d7B7ADlQBMXlJgvXEbtt5qlqd1YQ5fr12hTSfh7O/vgrEIvJxU2e7aSVrEUn75zTZ6Nd0s8tthrlZnrQ==" + }, + "@babel/template": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.0.tgz", + "integrity": "sha512-OKcwSYOW1mhWbnTBgQY5lvg1Fxg+VyfQGjcBduZFljfc044J5iDlnDSfhQ867O17XHiSCxYHUxHg2b7ryitbUQ==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/types": "^7.7.0" + } }, "@babel/traverse": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", - "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.0.tgz", + "integrity": "sha512-ea/3wRZc//e/uwCpuBX2itrhI0U9l7+FsrKWyKGNyvWbuMcCG7ATKY2VI4wlg2b2TA39HHwIxnvmXvtiKsyn7w==", "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.3", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.3", - "@babel/types": "^7.6.3", + "@babel/generator": "^7.7.0", + "@babel/helper-function-name": "^7.7.0", + "@babel/helper-split-export-declaration": "^7.7.0", + "@babel/parser": "^7.7.0", + "@babel/types": "^7.7.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "requires": { + "@babel/highlight": "^7.0.0" + } + } } }, "@babel/types": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", - "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.1.tgz", + "integrity": "sha512-kN/XdANDab9x1z5gcjDc9ePpxexkt+1EQ2MQUiM4XnMvQfvp87/+6kY4Ko2maLXH+tei/DgJ/ybFITeqqRwDiA==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -875,24 +921,40 @@ } }, "@babel/preset-typescript": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.6.0.tgz", - "integrity": "sha512-4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.7.0.tgz", + "integrity": "sha512-WZ3qvtAJy8w/i6wqq5PuDnkCUXaLUTHIlJujfGHmHxsT5veAbEdEjl3cC/3nXfyD0bzlWsIiMdUhZgrXjd9QWg==", "requires": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-transform-typescript": "^7.6.0" + "@babel/plugin-transform-typescript": "^7.7.0" } }, "@babel/register": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.6.2.tgz", - "integrity": "sha512-xgZk2LRZvt6i2SAUWxc7ellk4+OYRgS3Zpsnr13nMS1Qo25w21Uu8o6vTOAqNaxiqrnv30KTYzh9YWY2k21CeQ==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.7.0.tgz", + "integrity": "sha512-HV3GJzTvSoyOMWGYn2TAh6uL6g+gqKTgEZ99Q3+X9UURT1VPT/WcU46R61XftIc5rXytcOHZ4Z0doDlsjPomIg==", "requires": { "find-cache-dir": "^2.0.0", "lodash": "^4.17.13", - "mkdirp": "^0.5.1", + "make-dir": "^2.1.0", "pirates": "^4.0.0", - "source-map-support": "^0.5.9" + "source-map-support": "^0.5.16" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-support": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz", + "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + } } }, "@babel/runtime": { @@ -1455,9 +1517,9 @@ } }, "@types/express-serve-static-core": { - "version": "4.16.9", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.9.tgz", - "integrity": "sha512-GqpaVWR0DM8FnRUJYKlWgyARoBUAVfRIeVDZQKOttLFp5SmhhF9YFIYeTPwMd/AXfxlP7xVO2dj1fGu0Q+krKQ==", + "version": "4.16.11", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.11.tgz", + "integrity": "sha512-K8d2M5t3tBQimkyaYTXxtHYyoJPUEhy2/omVRnTAKw5FEdT+Ft6lTaTOpoJdHeG+mIwQXXtqiTcYZ6IR8LTzjQ==", "requires": { "@types/node": "*", "@types/range-parser": "*" @@ -1526,9 +1588,9 @@ "integrity": "sha1-/1QEYtL7TQqIRBzq8n0oewHD2Hg=" }, "@types/koa": { - "version": "2.0.50", - "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.0.50.tgz", - "integrity": "sha512-TcgOD2lh0EISSadAk1DOBYw7kNoY9XdeB3vEMOKiDDaTMYm+V54nyPsU7Ulb/htb5OBIR79RgTeCWntCcophLw==", + "version": "2.0.51", + "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.0.51.tgz", + "integrity": "sha512-L5e/l6Z+SR9Jk6HM0wNYdkvWhSUBOvi+7Q5Uwn7kE/VmBXX7NIxARMigARWAyXAtXiv5Ry1P2HmebolFdvuIVg==", "requires": { "@types/accepts": "*", "@types/cookies": "*", @@ -1747,14 +1809,14 @@ } }, "@vue/cli": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli/-/cli-3.12.0.tgz", - "integrity": "sha512-jAFEjJY8CjnhLdOXCrs5BX426erhJT5LWm7TEBIWpHUI4dH88NQTKBKPE/7BD+tSAe9OtAAi4SLyDtvO7HMymQ==", - "requires": { - "@vue/cli-shared-utils": "^3.12.0", - "@vue/cli-ui": "^3.12.0", - "@vue/cli-ui-addon-webpack": "^3.12.0", - "@vue/cli-ui-addon-widgets": "^3.12.0", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli/-/cli-3.12.1.tgz", + "integrity": "sha512-+F6wc5AzsvHuk15FjTt4UjETB48DDOQzEFvTj37lXqWOJLZ2x5TIxWiFWwUHTI1szbZoxtwKwqemaXtzhyGTKA==", + "requires": { + "@vue/cli-shared-utils": "^3.12.1", + "@vue/cli-ui": "^3.12.1", + "@vue/cli-ui-addon-webpack": "^3.12.1", + "@vue/cli-ui-addon-widgets": "^3.12.1", "chalk": "^2.4.1", "cmd-shim": "^2.0.2", "commander": "^2.20.0", @@ -1788,9 +1850,9 @@ }, "dependencies": { "@vue/cli-shared-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.12.0.tgz", - "integrity": "sha512-8XEn4s0Cc+98eqdGSQJSrzSKIsf0FMDmfDvgXjT7I2qZWs9e0toOAm7RooypRSad2FhwxzY2bLPgCkNPDJN/jQ==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.12.1.tgz", + "integrity": "sha512-jFblzRFjutGwu5utOKdVlPlsbA1lBUNNQlAThzNqej+JtTKJjnvjlhjKX0Gq0oOny5FjKWhoyfQ74p9h1qE6JQ==", "requires": { "@hapi/joi": "^15.0.1", "chalk": "^2.4.1", @@ -2287,12 +2349,12 @@ } }, "@vue/cli-ui": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.12.0.tgz", - "integrity": "sha512-Y/ekiky7m0KwH8oTWPE/BPbrSimSw1qusPNz7yzaO2bMNxeFlRPTLU0v+LjZZoVHqyoOC9gFIU8paEK+si+J9A==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.12.1.tgz", + "integrity": "sha512-3GtLPgaIIaMA9FnsGEuUNzmurrgwkMeexCEVZHgrvf7SRQfGOMH6l5lIkqXGgXSyG5x2rI3sVskJ0LRFdH+UGQ==", "requires": { "@akryum/winattr": "^3.0.0", - "@vue/cli-shared-utils": "^3.12.0", + "@vue/cli-shared-utils": "^3.12.1", "apollo-client": "^2.6.0", "chalk": "^2.4.1", "clone": "^2.1.1", @@ -2325,9 +2387,9 @@ }, "dependencies": { "@vue/cli-shared-utils": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.12.0.tgz", - "integrity": "sha512-8XEn4s0Cc+98eqdGSQJSrzSKIsf0FMDmfDvgXjT7I2qZWs9e0toOAm7RooypRSad2FhwxzY2bLPgCkNPDJN/jQ==", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.12.1.tgz", + "integrity": "sha512-jFblzRFjutGwu5utOKdVlPlsbA1lBUNNQlAThzNqej+JtTKJjnvjlhjKX0Gq0oOny5FjKWhoyfQ74p9h1qE6JQ==", "requires": { "@hapi/joi": "^15.0.1", "chalk": "^2.4.1", @@ -2442,14 +2504,14 @@ } }, "@vue/cli-ui-addon-webpack": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.12.0.tgz", - "integrity": "sha512-K06iFxgXJM8sc4Nl+1z1/VL1kN4jBWG+5V86Dz4rf3TZj5gDwT4KHpITkY7VAXRzFNZb2vrq4Q8/n5Q0XvcAbA==" + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.12.1.tgz", + "integrity": "sha512-bkXgHdybQYP8hcLXJB/HdwCym/QZmNwRzLlPcaHozY4vhoIfXXrGycprzNQsXo6GLsRdWWfUepiaVxUTYnsycw==" }, "@vue/cli-ui-addon-widgets": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.12.0.tgz", - "integrity": "sha512-6L+xMEffIoKy73QHN6RgJkEeiV4GeuXLSSnHzffrqhcd+lcgiHBBHTtk3OFKw17h9ZQIlDIsxqIAGpQUivJMqQ==" + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.12.1.tgz", + "integrity": "sha512-T6swttB2bZSlcns8gCmMb7z2b8hwAWpiMNrpl5Cuw8t2vv2UbJIjyRY3VBUWP38yJFle3hrkHA8qxJenC5T0jA==" }, "@vue/component-compiler-utils": { "version": "2.6.0", @@ -3098,9 +3160,9 @@ }, "dependencies": { "core-js": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.3.1.tgz", - "integrity": "sha512-1PGI49Lz5qYo3EBz0kymSfJgTvn2G/c03lBTJ7PO0R1liQ7Yd6E570odu5p4CxG/WB0yUwCmAWummo79yOQUcQ==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.3.6.tgz", + "integrity": "sha512-u4oM8SHwmDuh5mWZdDg9UwNVq5s1uqq6ZDLLIs07VY+VJU91i3h4f3K/pgFvtUQPGdeStrZ+odKyfyt4EnKHfA==" } } }, @@ -3194,9 +3256,9 @@ } }, "apollo-server-core": { - "version": "2.9.6", - "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.9.6.tgz", - "integrity": "sha512-2tHAWQxP7HrETI/BZvg2fem6YlahF9HUp4Y6SSL95WP3uNMOJBlN12yM1y+O2u5K5e4jwdPNaLjoL2A/26XrLw==", + "version": "2.9.7", + "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.9.7.tgz", + "integrity": "sha512-EqKyROy+21sM93YHjGpy6wlnzK/vH0fnZh7RCf3uB69aQ3OjgdP4AQ5oWRQ62NDN+aoic7OLhChSDJeDonq/NQ==", "requires": { "@apollographql/apollo-tools": "^0.4.0", "@apollographql/graphql-playground-html": "1.6.24", @@ -3207,7 +3269,7 @@ "apollo-engine-reporting": "^1.4.7", "apollo-server-caching": "^0.5.0", "apollo-server-env": "^2.4.3", - "apollo-server-errors": "^2.3.3", + "apollo-server-errors": "^2.3.4", "apollo-server-plugin-base": "^0.6.5", "apollo-server-types": "^0.2.5", "apollo-tracing": "^0.8.5", @@ -3231,14 +3293,14 @@ } }, "apollo-server-errors": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.3.3.tgz", - "integrity": "sha512-MO4oJ129vuCcbqwr5ZwgxqGGiLz3hCyowz0bstUF7MR+vNGe4oe3DWajC9lv4CxrhcqUHQOeOPViOdIo1IxE3g==" + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.3.4.tgz", + "integrity": "sha512-Y0PKQvkrb2Kd18d1NPlHdSqmlr8TgqJ7JQcNIfhNDgdb45CnqZlxL1abuIRhr8tiw8OhVOcFxz2KyglBi8TKdA==" }, "apollo-server-express": { - "version": "2.9.6", - "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.9.6.tgz", - "integrity": "sha512-j80azBeXvLvyZsbqCnus7GH+w8vk+2IOnYzROZu/f0D2roDZtsu1XZkn+aplDJZXMcEXtqB6t4qNpyvV4zY0XQ==", + "version": "2.9.7", + "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.9.7.tgz", + "integrity": "sha512-+DuJk1oq34Zx0bLYzgBgJH/eXS0JNxw2JycHQvV0+PAQ0Qi01oomJRA2r1S5isnfnSAnHb2E9jyBTptoHdw3MQ==", "requires": { "@apollographql/graphql-playground-html": "1.6.24", "@types/accepts": "^1.3.5", @@ -3246,7 +3308,7 @@ "@types/cors": "^2.8.4", "@types/express": "4.17.1", "accepts": "^1.3.5", - "apollo-server-core": "^2.9.6", + "apollo-server-core": "^2.9.7", "apollo-server-types": "^0.2.5", "body-parser": "^1.18.3", "cors": "^2.8.4", @@ -7868,9 +7930,9 @@ } }, "flow-parser": { - "version": "0.109.0", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.109.0.tgz", - "integrity": "sha512-e8Z1n0QvXAjpFcTqLBBM5hVKoJuR8CLNy5WlhRYIqcSH3ClYvZNSi38ZZN9wnQSoNoH12vnvMVeMHUCfYyVNhQ==" + "version": "0.111.1", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.111.1.tgz", + "integrity": "sha512-yo+C0a/fMsGwooxA2xd4kK/kuzSnFC8JZLsIB68mkTllLrF/nSQ8llwD82o8Vxwvisw9IPC/ZC8zqrWmkir9jQ==" }, "flush-write-stream": { "version": "1.1.1", @@ -8936,9 +8998,9 @@ "integrity": "sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==" }, "graphql-tools": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.5.tgz", - "integrity": "sha512-kQCh3IZsMqquDx7zfIGWBau42xe46gmqabwYkpPlCLIjcEY1XK+auP7iGRD9/205BPyoQdY8hT96MPpgERdC9Q==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.6.tgz", + "integrity": "sha512-jHLQw8x3xmSNRBCsaZqelXXsFfUSUSktSCUP8KYHiX1Z9qEuwcMpAf+FkdBzk8aTAFqOlPdNZ3OI4DKKqGKUqg==", "requires": { "apollo-link": "^1.2.3", "apollo-utilities": "^1.0.1", @@ -11304,9 +11366,9 @@ "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" }, "nanoid": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.3.tgz", - "integrity": "sha512-SbgVmGjEUAR/rYdAM0p0TCdKtJILZeYk3JavV2cmNVmIeR0SaKDudLRk58au6gpJqyFM9qz8ufEsS91D7RZyYA==" + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.6.tgz", + "integrity": "sha512-2NDzpiuEy3+H0AVtdt8LoFi7PnqkOnIzYmJQp7xsEU6VexLluHQwKREuiz57XaQC5006seIadPrIZJhyS2n7aw==" }, "nanomatch": { "version": "1.2.13", @@ -11719,27 +11781,64 @@ } }, "nodemon": { - "version": "1.19.3", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.3.tgz", - "integrity": "sha512-TBNKRmJykEbxpTniZBusqRrUTHIEqa2fpecbTQDQj1Gxjth7kKAPP296ztR0o5gPUWsiYbuEbt73/+XMYab1+w==", + "version": "1.19.4", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.4.tgz", + "integrity": "sha512-VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ==", "requires": { - "chokidar": "^2.1.5", - "debug": "^3.1.0", + "chokidar": "^2.1.8", + "debug": "^3.2.6", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", - "pstree.remy": "^1.1.6", - "semver": "^5.5.0", - "supports-color": "^5.2.0", + "pstree.remy": "^1.1.7", + "semver": "^5.7.1", + "supports-color": "^5.5.0", "touch": "^3.1.0", "undefsafe": "^2.0.2", "update-notifier": "^2.5.0" }, "dependencies": { + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -13389,9 +13488,9 @@ }, "dependencies": { "@types/node": { - "version": "10.14.21", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.14.21.tgz", - "integrity": "sha512-nuFlRdBiqbF+PJIEVxm2jLFcQWN7q7iWEJGsBV4n7v1dbI9qXB8im2pMMKMCUZe092sQb5SQft2DHfuQGK5hqQ==" + "version": "10.17.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.3.tgz", + "integrity": "sha512-QZ9CjUB3QoA3f2afw3utKlfRPhpmufB7jC2+oDhLWnXqoyx333fhKSQDLQu2EK7OE0a15X67eYiRAaJsHXrpMA==" } } }, @@ -13999,9 +14098,9 @@ } }, "rss-parser": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/rss-parser/-/rss-parser-3.7.2.tgz", - "integrity": "sha512-kx0VIFelgwBk5qA4n32U6cx40anAU7TwlRXjyxLDFgMlg8/UcJ64x+Hj5oRX1Kjos+OeFGOmnd5YXH5ES+bmzg==", + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/rss-parser/-/rss-parser-3.7.3.tgz", + "integrity": "sha512-Ys+fC5wHqWkfR+jNEL7QvC0crUCAcygxHel3ab9QQzHjmH7fNz379lrp984CuCPUf3WzxHEa73lL86W7yc9qjQ==", "requires": { "entities": "^1.1.1", "xml2js": "^0.4.19" @@ -15374,19 +15473,11 @@ } }, "temp": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", - "integrity": "sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=", + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", "requires": { - "os-tmpdir": "^1.0.0", - "rimraf": "~2.2.6" - }, - "dependencies": { - "rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=" - } + "rimraf": "~2.6.2" } }, "term-size": { @@ -16264,9 +16355,9 @@ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" }, "vega": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/vega/-/vega-5.7.2.tgz", - "integrity": "sha512-Zx5miCMgmMLtm74BCNEN3odHtZTGVomBpSvWpvIp4d5iHocrJyDnTNmeZXsBsLMYgtnjulVvtKkTiGFfzomHcw==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/vega/-/vega-5.7.3.tgz", + "integrity": "sha512-HCg5qgykM9drXPpjo9eJB9VWa/vHoDr5lXkjdk5iZBZI3fTajvAF/oFw6nM1l5P+eWibNlg9TFXn5vF4438uJw==", "requires": { "vega-crossfilter": "^4.0.1", "vega-dataflow": "^5.4.1", @@ -16274,18 +16365,18 @@ "vega-event-selector": "^2.0.1", "vega-expression": "^2.6.2", "vega-force": "^4.0.3", - "vega-functions": "^5.4.0", + "vega-functions": "^5.4.1", "vega-geo": "^4.1.0", "vega-hierarchy": "^4.0.3", "vega-loader": "^4.1.2", - "vega-parser": "^5.10.0", + "vega-parser": "^5.10.1", "vega-projection": "^1.3.0", "vega-regression": "^1.0.1", "vega-runtime": "^5.0.2", "vega-scale": "^4.1.3", "vega-scenegraph": "^4.3.1", - "vega-statistics": "^1.6.0", - "vega-transforms": "^4.4.2", + "vega-statistics": "^1.6.1", + "vega-transforms": "^4.4.3", "vega-typings": "^0.10.2", "vega-util": "^1.12.0", "vega-view": "^5.3.1", @@ -16295,9 +16386,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "vega-event-selector": { "version": "2.0.1", @@ -16321,11 +16412,11 @@ } }, "vega-statistics": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.0.tgz", - "integrity": "sha512-8ECaQ9/q8gnMpDLxYEDLCFxqoUmsW1AV1Qho5Iiryq41CoYhSVmg3DzelZRLutmnE8LYsIW6ysQdZw4tOMbhRQ==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.1.tgz", + "integrity": "sha512-EX+IkELoYLnygcUXcFhcdWwzmalHzKLvSVTx9deGMyPOsCZRd0Lwu/SGwrIctoYa5r9DBR0/bGxQAC0t/UoSdA==", "requires": { - "d3-array": "^2.3.1" + "d3-array": "^2.3.2" } }, "vega-typings": { @@ -16359,9 +16450,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" } } }, @@ -16416,9 +16507,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "d3-format": { "version": "1.4.1", @@ -16473,28 +16564,28 @@ } }, "vega-functions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.4.0.tgz", - "integrity": "sha512-CK0LyeeGXsM+z3d6F8d8B+qqXsPqrJnfvEb3j93Mkc/H0m4cWIlSqIJ+YqO7FjUyWUE971XKcsTlfYoXlnL8Cg==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.4.1.tgz", + "integrity": "sha512-f/smrE+ujMZgSWiTNVmdSNu3npDZMrHGc+MjjQ2pjJixcQRKTz1SbnmpogFhCgvKa6qBSw7hrZX8/TKGh4nuiA==", "requires": { - "d3-array": "^2.3.1", - "d3-color": "^1.3.0", + "d3-array": "^2.3.2", + "d3-color": "^1.4.0", "d3-format": "^1.4.1", "d3-geo": "^1.11.6", "d3-time-format": "^2.1.3", - "vega-dataflow": "^5.2.1", - "vega-expression": "^2.6.1", - "vega-scale": "^4.0.0", - "vega-scenegraph": "^4.0.0", + "vega-dataflow": "^5.4.1", + "vega-expression": "^2.6.2", + "vega-scale": "^4.1.3", + "vega-scenegraph": "^4.3.1", "vega-selections": "^5.0.1", - "vega-statistics": "^1.3.0", - "vega-util": "^1.11.2" + "vega-statistics": "^1.6.1", + "vega-util": "^1.12.0" }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "d3-color": { "version": "1.4.0", @@ -16514,6 +16605,14 @@ "vega-util": "^1.11.0" } }, + "vega-statistics": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.1.tgz", + "integrity": "sha512-EX+IkELoYLnygcUXcFhcdWwzmalHzKLvSVTx9deGMyPOsCZRd0Lwu/SGwrIctoYa5r9DBR0/bGxQAC0t/UoSdA==", + "requires": { + "d3-array": "^2.3.2" + } + }, "vega-util": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.12.0.tgz", @@ -16535,9 +16634,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "vega-projection": { "version": "1.3.0", @@ -16760,14 +16859,14 @@ } }, "vega-parser": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-5.10.0.tgz", - "integrity": "sha512-AGYwQw/v2+73nvR56sPagrxMHs+8T1APSfiK4Fb2VdhqAqzX3U6A5sqM0MA8GvqHLkmqbuRU3bumv7D/4+I4fw==", + "version": "5.10.1", + "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-5.10.1.tgz", + "integrity": "sha512-NtjFhuXEGlc6ZOc+LeG7Gecmwal/UPu8WDI5wCjBWDogGgpeuRfQQ1haLz2KMsZhq5e2aUmk7iTuH/CuUoeGEA==", "requires": { - "vega-dataflow": "^5.4.0", + "vega-dataflow": "^5.4.1", "vega-event-selector": "^2.0.1", "vega-expression": "^2.6.2", - "vega-functions": "^5.4.0", + "vega-functions": "^5.4.1", "vega-scale": "^4.1.3", "vega-util": "^1.12.0" }, @@ -16812,9 +16911,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "vega-util": { "version": "1.12.0", @@ -16852,14 +16951,14 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "d3-scale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.1.0.tgz", - "integrity": "sha512-3edyEBwbwQG400VbgaepQC9ZYFX3h92flLHIUa1+nvZp/mqCYdxNM9zGTjKtPcSAuBCyPePdMQOapsD0qNALrg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.0.tgz", + "integrity": "sha512-1RnLYPmH3f2E96hSsCr3ok066myuAxoH3+pnlJAedeMOp7jeW7A+GZHAyVWWaStfphyPEBiDoLFA9zl+DcnC2Q==", "requires": { "d3-array": "1.2.0 - 2", "d3-format": "1", @@ -16962,27 +17061,27 @@ } }, "vega-transforms": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.4.2.tgz", - "integrity": "sha512-LliiEnGQjQgFQ/IaHe0gtSvyo0N/RvMjEK2DilE5goamFQP71ud9EPTgyi5ZmT++TaNKS//jQ9grCFXnc/PsEA==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.4.3.tgz", + "integrity": "sha512-8GxMm1CecRzNG89zr4JroOfPsWCkb9lWL5owSBsB+AalyJaFjxYwKuCM6L2OsAKID3su3aeQ0oSBQTR3v0nqPA==", "requires": { "d3-array": "^2.3.2", "vega-dataflow": "^5.4.1", - "vega-statistics": "^1.6.0", - "vega-util": "^1.11.2" + "vega-statistics": "^1.6.1", + "vega-util": "^1.12.0" }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "vega-statistics": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.0.tgz", - "integrity": "sha512-8ECaQ9/q8gnMpDLxYEDLCFxqoUmsW1AV1Qho5Iiryq41CoYhSVmg3DzelZRLutmnE8LYsIW6ysQdZw4tOMbhRQ==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.1.tgz", + "integrity": "sha512-EX+IkELoYLnygcUXcFhcdWwzmalHzKLvSVTx9deGMyPOsCZRd0Lwu/SGwrIctoYa5r9DBR0/bGxQAC0t/UoSdA==", "requires": { - "d3-array": "^2.3.1" + "d3-array": "^2.3.2" } }, "vega-util": { @@ -17020,9 +17119,9 @@ }, "dependencies": { "d3-array": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.2.tgz", - "integrity": "sha512-cg73UOh7D7e72FQQER4l5aXnEwlizah8TIggMn8qtEO/7APe5s6bAZhlDlVw0BRml6Qi4bd44WJ5HGuiK7fRyw==" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.3.3.tgz", + "integrity": "sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==" }, "vega-util": { "version": "1.12.0", diff --git a/frontend/package.json b/frontend/package.json index 48752ba9b9..3af31b05bf 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -13,7 +13,7 @@ "@types/jquery": "^3.3.30", "@types/lodash": "^4.14.135", "@types/nprogress": "^0.2.0", - "@vue/cli": "^3.12.0", + "@vue/cli": "^3.12.1", "bootstrap": "^4.3.1", "brunch": "^2.10.17", "canvas": "^2.6.0", @@ -26,7 +26,7 @@ "quill": "^1.3.6", "shards-vue": "^1.0.4", "svgsaver": "^0.9.0", - "vega": "^5.7.2", + "vega": "^5.7.3", "vega-embed": "^4.2.1", "vega-lite": "^3.4.0", "vue": "^2.6.10", diff --git a/frontend/src/views/Dashboard.vue b/frontend/src/views/Dashboard.vue index 6756c791aa..d91deee1d6 100755 --- a/frontend/src/views/Dashboard.vue +++ b/frontend/src/views/Dashboard.vue @@ -42,7 +42,7 @@ Click here to see an overview of this repository's metrics -

This repository had a sharp {{ getPhrase(insights[highest[idx].rg_name][highest[idx].repo_git][highest[idx].ri_metric]) }}

+

This repository had {{ getPhrase(insights[highest[idx].rg_name][highest[idx].repo_git][highest[idx].ri_metric]) }}

@@ -449,12 +449,12 @@ export default class Dashboard extends Vue { this.timeframes[values[0].repo_git] = date + ' days ago' if (values[i+1]){ if (values[i+1].value > values[i].value) - return 'increase in ' + values[0].ri_metric + ' ' + date + ' days ago' + return 'a sharp increase in ' + values[0].ri_metric + ' ' + date + ' days ago' else - return 'decrease in ' + values[0].ri_metric + ' ' + date + ' days ago' + return 'a sharp decrease in ' + values[0].ri_metric + ' ' + date + ' days ago' } else { - return 'insight in ' + values[0].ri_metric + ' ' + date + ' days ago' + return 'an anomaly in ' + values[0].ri_metric + ' ' + date + ' days ago' } } diff --git a/package-lock.json b/package-lock.json index 766679de60..8d5b2ec9d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -199,9 +199,9 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz", + "integrity": "sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -212,9 +212,9 @@ } }, "graceful-fs": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", - "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==" + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" }, "iconv-lite": { "version": "0.4.24", From cf7847776c0f5eb80dfaabd70ec4e2e7d82bd1d5 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Wed, 6 Nov 2019 12:22:47 -0600 Subject: [PATCH 015/250] Update Facade repo path selection process Signed-off-by: Carter Landis --- util/scripts/install/setup_db.sh | 39 +++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/util/scripts/install/setup_db.sh b/util/scripts/install/setup_db.sh index 9ff94057e5..7372562b10 100755 --- a/util/scripts/install/setup_db.sh +++ b/util/scripts/install/setup_db.sh @@ -39,21 +39,34 @@ function get_api_key_and_repo_path() { echo echo "The Facade data collection worker needs to clone repositories to run its analysis." - echo "Please specify the directory to which these repos will be cloned." - echo "The directory must already exist, and the path must be explicit (no environment variables allowed) and absolute." - read -p "Facade repo path: " facade_repo_path - echo + echo "Would you like to use an existing directory, or create a new one?" + select create_facade_repo in "Create a new directory" "Use an existing directory" + do + case $create_facade_repo in + "Create a new directory" ) + echo "** You MUST use an absolute path. **" + read -p "Desired directory name: " facade_repo_path + if [[ -d "$facade_repo_path" ]]; then + echo "That directory already exists. Continuing..." + else + mkdir "$facade_repo_path" + echo "Directory created." + fi + break + ;; + "Use an existing directory" ) + echo "** You MUST use an absolute path. **" + read -p "Facade repo path: " facade_repo_path - # while [ ! -d "$facade_repo_path" ]; do - # mkdir $facade_repo_path - # done + while [[ ! -d "$facade_repo_path" ]]; do + echo "That directory does not exist." + echo "** You MUST use an absolute path. **" + read -p "Facade repo path: " facade_repo_path + done - while [ ! -d "$facade_repo_path" ]; do - echo - echo "Invalid path specified. Could not create the directory." - echo "The directory must already exist and be absolute, or the base directory of the facade repository path must exist so we can create the directory for you." - read -p "Facade repo path: " facade_repo_path - echo + break + ;; + esac done [[ "${facade_repo_path}" != */ ]] && facade_repo_path="${facade_repo_path}/" From a77cc50ac465e12476404aaf9e4e21cb7dc4ae2e Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Wed, 6 Nov 2019 12:23:30 -0600 Subject: [PATCH 016/250] Remove outdate webpage installation option Signed-off-by: Carter Landis --- util/scripts/install/config.sh | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/util/scripts/install/config.sh b/util/scripts/install/config.sh index 83619e4639..967762720c 100755 --- a/util/scripts/install/config.sh +++ b/util/scripts/install/config.sh @@ -6,34 +6,12 @@ Your choice: " if [[ ! -e augur.config.json ]]; then echo "** No config file was found. Starting config creation process. **" - echo echo "**********************************" echo "Setting up the database configuration..." echo "**********************************" echo - echo "Would you like to enter your database credentials at the command line or on a web page?" - select credential_setup_method in "Command Line" "Webpage" - do - case $credential_setup_method in - "Command Line" ) - util/scripts/install/setup_db.sh - break - ;; - "Webpage" ) - echo "Continuing installation via webpage..." - pwd - cd util/scripts/install/webserver - python server.py - cd .. - python make_config.py - rm temp.config.json - cd ../../.. - pwd - break - ;; - esac - done + util/scripts/install/setup_db.sh else echo "** Config file was found. Resuming installation... **" fi From 2a8af307305c91453fd94d12279c0704fcfbc338 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Wed, 6 Nov 2019 12:25:58 -0600 Subject: [PATCH 017/250] Update installation process logging Signed-off-by: Carter Landis --- util/scripts/install/checks.sh | 14 ++------------ util/scripts/install/install.sh | 27 ++------------------------- 2 files changed, 4 insertions(+), 37 deletions(-) diff --git a/util/scripts/install/checks.sh b/util/scripts/install/checks.sh index af683e8a1d..87b09dad53 100755 --- a/util/scripts/install/checks.sh +++ b/util/scripts/install/checks.sh @@ -1,10 +1,6 @@ #!/bin/bash -echo -echo "***********************************************" echo "Checking for the correct version of Python 3..." -echo "***********************************************" -echo function check_python_version() { major_python_version=$($1 -c 'import sys; print(sys.version_info.major)') @@ -41,11 +37,8 @@ else augur_python_command="python" fi -echo -echo "**********************************" echo "Checking for pip..." -echo "**********************************" -echo + if [[ ! $(command -v pip) ]]; then echo "pip not found searching. Searching for pip3..." if [[ ! $(command -v pip3) ]]; then @@ -59,11 +52,8 @@ else echo "Sufficient form of pip detected at `which pip`. Resuming installation..." fi -echo -echo "**********************************" echo "Checking for virtual environment..." -echo "**********************************" -echo + if [[ -z "$VIRTUAL_ENV" ]]; then echo "*** We noticed you're not using a virtual environment. It is STRONGLY recommended to install Augur in its own virtual environment. ***" echo "*** Would you like to create a virtual environment? ***" diff --git a/util/scripts/install/install.sh b/util/scripts/install/install.sh index 6cb8d6042c..86ca01f093 100755 --- a/util/scripts/install/install.sh +++ b/util/scripts/install/install.sh @@ -16,22 +16,18 @@ if [[ ! -d logs ]]; then mkdir logs fi -# backend echo "Installing backend dependencies..." util/scripts/install/backend.sh > logs/backend-install.log 2>logs/backend-install.err -echo "Backend installation complete! Check logs/backend-installer.log and logs/backend-installer.err" +echo "Done!" -# workers echo "Installing worker dependencies..." util/scripts/install/workers.sh >logs/workers.log 2>logs/workers.err -echo "Worker installation complete! Check logs/workers.log and logs/workers.err" +echo "Done!" -# docs echo "Generating documentation..." util/scripts/install/docs.sh echo "Done!" -# config echo "Generating config..." util/scripts/install/config.sh echo "Done!" @@ -53,25 +49,6 @@ do esac done -echo "Would you like to install nomos?" -echo "(nomos is project scanner used to identify license declarations in source code files.)" -echo -echo "*** Warning: nomos currently only officially supported on Ubuntu systems ***" -select should_install_nomos in "Yes" "No" -do - case $should_install_nomos in - "Yes" ) - util/scripts/install/backend.sh > logs/backend-install.log 2>logs/backend-install.err - break - ;; - "No" ) - echo "Skipping nomos installation..." - break - ;; - esac -done -echo - echo "**********************************" echo "*** INSTALLATION COMPLETE ***" echo From f05735b10a35eec5494585ab1b5a88263bfb15d8 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Wed, 6 Nov 2019 15:40:29 -0600 Subject: [PATCH 018/250] Commented out Facade Contributors Update. --- .../facade_worker/facade03analyzecommit.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 8eb600308e..b57d16173b 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -183,10 +183,13 @@ def store_commit(repos_id,commit,filename, # email_check = ("""SELECT cntrb_email, tool_source, tool_version, data_source # FROM contributors WHERE cntrb_email = {augur_email} OR cntrb_email = {committer_email}}""") - try: - update_contributors(author_email, committer_email, author_name, committer_name) - except Exception: #print(e) - cfg.log_activity('Info', str(traceback.print_exc())) + ## Commented out so as to not update contributors + ## sean: 11/6/2019 + ## Goal: Address with the contributors model worker + # try: + # update_contributors(author_email, committer_email, author_name, committer_name) + # except Exception: #print(e) + # cfg.log_activity('Info', str(traceback.print_exc())) ### The real function starts here ### From a65811790f3b9d0334984f541df4f7facb63da90 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Thu, 7 Nov 2019 08:48:40 -0600 Subject: [PATCH 019/250] Sketch of schema update script we will need from here forward. Next master release needs to include this. We will need to start tracking schema versions after the next release. --- util/scripts/install/schema_update.sql | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 util/scripts/install/schema_update.sql diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql new file mode 100644 index 0000000000..3cdfc0a571 --- /dev/null +++ b/util/scripts/install/schema_update.sql @@ -0,0 +1,29 @@ +ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; + +CREATE SEQUENCE "spdx"."projects_package_id_seq" +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1; + +ALTER TABLE "spdx"."files" DROP CONSTRAINT "files_project_id_fkey"; + +ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; + +ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" DROP CONSTRAINT "projects_pkey"; + +ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); + +ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); + +SELECT setval('"spdx"."projects_package_id_seq"', 1, false); + +ALTER SEQUENCE "spdx"."projects_package_id_seq" +OWNED BY "spdx"."projects"."package_id"; + +ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; \ No newline at end of file From e8555cb46e32a2496eae515909573361d3319595 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Thu, 7 Nov 2019 16:29:37 -0600 Subject: [PATCH 020/250] annual_commit_count_ranked_by_new_repo_in_repo_group metric reimplementation for consistency of parameters and period aggregation support --- augur/metrics/commit/commit.py | 109 +++++++++++++++++++++++---------- augur/metrics/commit/routes.py | 47 ++++++++------ 2 files changed, 105 insertions(+), 51 deletions(-) diff --git a/augur/metrics/commit/commit.py b/augur/metrics/commit/commit.py index b0e2d6b2f0..e9385735b2 100644 --- a/augur/metrics/commit/commit.py +++ b/augur/metrics/commit/commit.py @@ -11,7 +11,15 @@ from augur.util import logger, annotate, add_metrics @annotate(tag='committers') -def committers(self, repo_group_id, repo_id=None, begin_date=None, end_date=None, period='week'): +def committers(self, repo_group_id, repo_id=None, begin_date=None, end_date=None, period='month'): + """ + :param repo_id: The repository's id + :param repo_group_id: The repository's group id + :param period: To set the periodicity to 'day', 'week', 'month' or 'year', defaults to 'day' + :param begin_date: Specifies the begin date, defaults to '1970-1-1 00:00:00' + :param end_date: Specifies the end date, defaults to datetime.now() + :return: DataFrame of persons/period + """ if not begin_date: begin_date = '1970-1-1 00:00:01' if not end_date: @@ -54,52 +62,84 @@ def committers(self, repo_group_id, repo_id=None, begin_date=None, end_date=None """ ) - results = pd.read_sql(committersSQL, self.database, params={'repo_id': repo_id, 'repo_group_id': repo_group_id,'begin_date': begin_date, 'end_date': end_date, 'period':period}) + results = pd.read_sql(committersSQL, self.database, params={'repo_id': repo_id, + 'repo_group_id': repo_group_id,'begin_date': begin_date, 'end_date': end_date, 'period':period}) return results @annotate(tag='annual-commit-count-ranked-by-new-repo-in-repo-group') -def annual_commit_count_ranked_by_new_repo_in_repo_group(self, repo_group_id, repo_id = None, calendar_year=None): +def annual_commit_count_ranked_by_new_repo_in_repo_group(self, repo_group_id, repo_id=None, begin_date=None, end_date=None, period='month'): """ For each repository in a collection of repositories being managed, each REPO that first appears in the parameterized calendar year (a new repo in that year), show all commits for that year (total for year by repo). Result ranked from highest number of commits to lowest by default. - :param repo_url: the repository's URL - :param calendar_year: the calendar year a repo is created in to be considered "new" - :param repo_group: the group of repositories to analyze + :param repo_id: The repository's id + :param repo_group_id: The repository's group id + :param period: To set the periodicity to 'day', 'week', 'month' or 'year', defaults to 'day' + :param begin_date: Specifies the begin date, defaults to '1970-1-1 00:00:00' + :param end_date: Specifies the end date, defaults to datetime.now() + :return: DataFrame of data """ - if calendar_year == None: - calendar_year = 2019 + if not begin_date: + begin_date = '1970-1-1 00:00:01' + if not end_date: + end_date = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') + + cdRgNewrepRankedCommitsSQL = None if not repo_id: + table = 'dm_repo_group_annual' if period == 'year' or period == 'all' else 'dm_repo_group_monthly' if period == 'month' else 'dm_repo_group_weekly' cdRgNewrepRankedCommitsSQL = s.sql.text(""" - SELECT repo.repo_id, sum(cast(added as INTEGER) - cast(removed as INTEGER) - cast(whitespace as INTEGER)) as net, patches, repo_name - FROM dm_repo_annual, repo, repo_groups - where repo.repo_group_id = :repo_group_id - and dm_repo_annual.repo_id = repo.repo_id - and date_part('year', repo.repo_added) = :calendar_year - and repo.repo_group_id = repo_groups.repo_group_id - group by repo.repo_id, patches, rg_name - ORDER BY net desc - LIMIT 10 - """) + SELECT repo_groups.repo_group_id, rg_name, year, sum(cast(added AS INTEGER) - cast(removed AS INTEGER) - cast(whitespace AS INTEGER)) AS net, sum(cast(patches AS INTEGER)) AS commits + FROM {0}, repo_groups + WHERE {0}.repo_group_id = repo_groups.repo_group_id + AND repo_groups.repo_group_id = :repo_group_id + AND ( + year > date_part('year', TIMESTAMP :begin_date) + OR ( + year = date_part('year', TIMESTAMP :begin_date) + AND {1} >= date_part('{1}', TIMESTAMP :begin_date) + ) + ) + AND ( + year < date_part('year', TIMESTAMP :end_date) + OR ( + year = date_part('year', TIMESTAMP :end_date) + AND {1} <= date_part('{1}', TIMESTAMP :end_date) + ) + ) + GROUP BY repo_groups.repo_group_id, rg_name, YEAR + ORDER BY YEAR ASC + """.format(table, period)) else: + table = 'dm_repo_annual' if period == 'year' or period == 'all' else 'dm_repo_monthly' if period == 'month' else 'dm_repo_weekly' cdRgNewrepRankedCommitsSQL = s.sql.text(""" - SELECT repo.repo_id, sum(cast(added as INTEGER) - cast(removed as INTEGER) - cast(whitespace as INTEGER)) as net, patches, repo_name - FROM dm_repo_annual, repo, repo_groups - where repo.repo_group_id = (select repo.repo_group_id from repo where repo.repo_id = :repo_id) - and dm_repo_annual.repo_id = repo.repo_id - and date_part('year', repo.repo_added) = :calendar_year - and repo.repo_group_id = repo_groups.repo_group_id - group by repo.repo_id, patches, rg_name - ORDER BY net desc - LIMIT 10 - """) - results = pd.read_sql(cdRgNewrepRankedCommitsSQL, self.database, params={ "repo_group_id": repo_group_id, - "repo_id": repo_id, "calendar_year": calendar_year}) + SELECT repo.repo_id, repo_name, year, sum(cast(added AS INTEGER) - cast(removed AS INTEGER) - cast(whitespace AS INTEGER)) AS net, sum(cast(patches AS INTEGER)) AS commits + FROM {0}, repo + WHERE {0}.repo_id = repo.repo_id + AND repo.repo_id = :repo_id + AND ( + year > date_part('year', TIMESTAMP :begin_date) + OR ( + year = date_part('year', TIMESTAMP :begin_date) + AND {1} >= date_part('{1}', TIMESTAMP :begin_date) + ) + ) + AND ( + year < date_part('year', TIMESTAMP :end_date) + OR ( + year = date_part('year', TIMESTAMP :end_date) + AND {1} <= date_part('{1}', TIMESTAMP :end_date) + ) + ) + GROUP BY repo.repo_id, repo_name, YEAR + ORDER BY YEAR ASC + """.format(table, period)) + results = pd.read_sql(cdRgNewrepRankedCommitsSQL, self.database, params={'repo_id': repo_id, + 'repo_group_id': repo_group_id,'begin_date': begin_date, 'end_date': end_date}) return results @annotate(tag='annual-commit-count-ranked-by-repo-in-repo-group') @@ -107,9 +147,12 @@ def annual_commit_count_ranked_by_repo_in_repo_group(self, repo_group_id, repo_i """ For each repository in a collection of repositories being managed, each REPO's total commits during the current Month, Year or Week. Result ranked from highest number of commits to lowest by default. - :param repo_group_id: The repository's repo_group_id - :param repo_id: The repository's repo_id, defaults to None - :param timeframe: all, year, or month for the episodic summary timeframe. + :param repo_id: The repository's id + :param repo_group_id: The repository's group id + :param period: To set the periodicity to 'day', 'week', 'month' or 'year', defaults to 'day' + :param begin_date: Specifies the begin date, defaults to '1970-1-1 00:00:00' + :param end_date: Specifies the end date, defaults to datetime.now() + :return: DataFrame of data """ if timeframe == None: timeframe = 'all' diff --git a/augur/metrics/commit/routes.py b/augur/metrics/commit/routes.py index fa4702663d..0472b6b280 100644 --- a/augur/metrics/commit/routes.py +++ b/augur/metrics/commit/routes.py @@ -9,20 +9,25 @@ def create_commit_routes(server): @apiName annual-commit-count-ranked-by-new-repo-in-repo-group @apiGroup Experimental @apiDescription This is an Augur-specific metric. We are currently working to define these more formally. Source: Git Repository - @apiParam {String} repo_url_base Base64 version of the URL of the GitHub repository as it appears in the Facade DB + @apiParam {string} repo_group_id Repository Group ID. + @apiParam {string=day, week, month, year, all} [period="day"] Periodicity specification. + @apiParam {string} [begin_date="1970-1-1 0:0:0"] Beginning date specification. E.g. values: `2018`, `2018-05`, `2019-05-01` + @apiParam {string} [end_date="current date"] Ending date specification. E.g. values: `2018`, `2018-05`, `2019-05-01` @apiSuccessExample {json} Success-Response: [ { - "repos_id": 1, - "net": 2479124, - "patches": 1, - "repo_name": "twemoji" + "repo_group_id": 20, + "rg_name": "Rails (wg-value)", + "year": 2004, + "net": 21996, + "commits": 289 }, { - "repos_id": 63, - "net": 2477911, - "patches": 1, - "repo_name": "twemoji-1" + "repo_group_id": 20, + "rg_name": "Rails (wg-value)", + "year": 2005, + "net": 27470, + "commits": 2455 } ] """ @@ -33,20 +38,26 @@ def create_commit_routes(server): @apiName annual-commit-count-ranked-by-new-repo-in-repo-group @apiGroup Experimental @apiDescription This is an Augur-specific metric. We are currently working to define these more formally. Source: Git Repository - @apiParam {String} repo_url_base Base64 version of the URL of the GitHub repository as it appears in the Facade DB + @apiParam {string} repo_group_id Repository Group ID. + @apiParam {string} repo_id Repository ID. + @apiParam {string=day, week, month, year, all} [period="day"] Periodicity specification. + @apiParam {string} [begin_date="1970-1-1 0:0:0"] Beginning date specification. E.g. values: `2018`, `2018-05`, `2019-05-01` + @apiParam {string} [end_date="current date"] Ending date specification. E.g. values: `2018`, `2018-05`, `2019-05-01` @apiSuccessExample {json} Success-Response: [ { - "repos_id": 1, - "net": 2479124, - "patches": 1, - "repo_name": "twemoji" + "repo_id": 21000, + "repo_name": "rails", + "year": 2004, + "net": 21996, + "commits": 289 }, { - "repos_id": 63, - "net": 2477911, - "patches": 1, - "repo_name": "twemoji-1" + "repo_id": 21000, + "repo_name": "rails", + "year": 2005, + "net": 26504, + "commits": 2428 } ] """ From f1aa8d86d95c1e42f9e74bdc3d6fef3b0120064a Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Thu, 7 Nov 2019 16:31:20 -0600 Subject: [PATCH 021/250] configurable confidence interval w default 95%, info sent to jonah for slackbot now includes date of anomaly --- workers/insight_worker/insight_worker/runtime.py | 1 + workers/insight_worker/insight_worker/worker.py | 15 ++++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/workers/insight_worker/insight_worker/runtime.py b/workers/insight_worker/insight_worker/runtime.py index cc9a848244..da40e3cded 100644 --- a/workers/insight_worker/insight_worker/runtime.py +++ b/workers/insight_worker/insight_worker/runtime.py @@ -74,6 +74,7 @@ def main(augur_url, host, port): "zombie_id": 22, "training_days": worker_info['training_days'] if 'training_days' in worker_info else 365, "anomaly_days": worker_info['anomaly_days'] if 'anomaly_days' in worker_info else 90, + "confidence_interval": worker_info['confidence_interval'] if 'confidence_interval' in worker_info else 95, "host": credentials["host"], "location": "http://{}:{}".format(server["host"],worker_port), "password": credentials["password"], diff --git a/workers/insight_worker/insight_worker/worker.py b/workers/insight_worker/insight_worker/worker.py index 6c3543d856..f0b43fda41 100644 --- a/workers/insight_worker/insight_worker/worker.py +++ b/workers/insight_worker/insight_worker/worker.py @@ -44,6 +44,7 @@ def __init__(self, config, task=None): self.finishing_task = False self.anomaly_days = self.config['anomaly_days'] self.training_days = self.config['training_days'] + self.confidence = self.config['confidence_interval'] / 100 logging.info("Worker initializing...") @@ -295,8 +296,7 @@ def is_unique_key(key): for key in raw_values.keys(): if len(raw_values[key]) > 0: - confidence = 0.95 - mean, lower, upper = self.confidence_interval(raw_values[key], confidence=confidence) + mean, lower, upper = self.confidence_interval(raw_values[key], confidence=self.confidence) logging.info("Upper: {}, middle: {}, lower: {}".format(upper, mean, lower)) i = 0 discovery_index = None @@ -336,7 +336,7 @@ def is_unique_key(key): 'ri_value': date_filtered_raw_values[discovery_index][key],#date_filtered_raw_values[j][key], 'ri_date': date_filtered_raw_values[discovery_index]['date'],#date_filtered_raw_values[j]['date'], 'ri_score': score, - 'ri_detection_method': '95% confidence interval', + 'ri_detection_method': '{} confidence interval'.format(self.confidence), "tool_source": self.tool_source, "tool_version": self.tool_version, "data_source": self.data_source @@ -362,7 +362,7 @@ def is_unique_key(key): 'ri_date': tuple['date'],#date_filtered_raw_values[j]['date'], 'ri_fresh': 0 if j < discovery_index else 1, 'ri_score': score, - 'ri_detection_method': '95% confidence interval', + 'ri_detection_method': '{} confidence interval'.format(self.confidence), "tool_source": self.tool_source, "tool_version": self.tool_version, "data_source": self.data_source @@ -463,9 +463,10 @@ def send_insight(self, insight, units_from_mean): 'insight': True, # 'rg_name': repo['rg_name'], 'repo_git': repo['repo_git'], - 'value': insight['ri_value'], - 'field': insight['ri_field'], - 'metric': insight['ri_metric'], + 'value': insight['ri_value'], # y-value of data point that is the anomaly + 'date': insight['ri_date'], # date of data point that is the anomaly + 'field': insight['ri_field'], # name of the field from the endpoint that the anomaly was detected on + 'metric': insight['ri_metric'], # name of the metric the anomaly was detected on 'units_from_mean': units_from_mean, 'detection_method': insight['ri_detection_method'] } From ad523dde009fc2e1ae92a498e1bde6c76c9d54b3 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 09:52:28 +0000 Subject: [PATCH 022/250] fixing repo_info_worker multithreading sequence bug --- .../repo_info_worker/repo_info_worker/worker.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/workers/repo_info_worker/repo_info_worker/worker.py b/workers/repo_info_worker/repo_info_worker/worker.py index 82d2955596..5fe3a10376 100644 --- a/workers/repo_info_worker/repo_info_worker/worker.py +++ b/workers/repo_info_worker/repo_info_worker/worker.py @@ -96,17 +96,13 @@ def __init__(self, config, task=None): logging.info('Getting max repo_info_id...') max_repo_info_id_sql = s.sql.text(""" - SELECT MAX(repo_info_id) AS repo_info_id - FROM repo_info + select nextval('repo_info_repo_info_id_seq'::regclass) as repo_info_id """) rs = pd.read_sql(max_repo_info_id_sql, self.db) - repo_info_start_id = int(rs.iloc[0]['repo_info_id']) if rs.iloc[0]['repo_info_id'] is not None else 1 + repo_info_start_id = int(rs.iloc[0]['repo_info_id']) - if repo_info_start_id == 1: - self.info_id_inc = repo_info_start_id - else: - self.info_id_inc = repo_info_start_id + 1 + self.info_id_inc = repo_info_start_id connected = False for i in range(5): @@ -293,6 +289,13 @@ def query_repo_info(self, repo_id, github_url): logging.info(f'Inserting repo info for repo with id:{repo_id}, owner:{owner}, name:{repo}') + repo_info_id_sql = s.sql.text(""" + select nextval('repo_info_repo_info_id_seq'::regclass) as repo_info_id + """) + rsid = pd.read_sql(repo_info_id_sql, self.db) + + self.info_id_inc = int(rsid.iloc[0]['repo_info_id']) + rep_inf = { 'repo_info_id': self.info_id_inc, 'repo_id': repo_id, From bb72f32cc3320902b02345876e1cfb4d0f41abbb Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 12:09:56 +0000 Subject: [PATCH 023/250] if the pull request worker hiccuped during the initial collection, but after the first page of pull requests, which are the oldest ones, but before it finished, then the entire history would not get collected for those repositories where the hiccup occurred mid collection. This is fixed. --- workers/pull_request_worker/pull_request_worker/worker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workers/pull_request_worker/pull_request_worker/worker.py b/workers/pull_request_worker/pull_request_worker/worker.py index f8684954c8..6038728d90 100644 --- a/workers/pull_request_worker/pull_request_worker/worker.py +++ b/workers/pull_request_worker/pull_request_worker/worker.py @@ -377,11 +377,12 @@ def query_pr(self, entry_info): if len(new_prs) == 0: logging.info('No more unknown PRs... Exiting pagination') - break + #break else: prs += new_prs if 'next' not in r.links: + logging.info('No next page ... ') break else: url = r.links['next']['url'] From 191ef8e661bbaac3fee581d31ae0d21b5d0e86ce Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 12:27:40 -0600 Subject: [PATCH 024/250] Changed default repo_group and repo ordering to their respective names. People love and expect alphabetical things. --- augur/metrics/util/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/augur/metrics/util/util.py b/augur/metrics/util/util.py index 3365131a0b..a83ffcf78e 100644 --- a/augur/metrics/util/util.py +++ b/augur/metrics/util/util.py @@ -18,6 +18,7 @@ def repo_groups(self): repoGroupsSQL = s.sql.text(""" SELECT * FROM repo_groups + ORDER BY rg_name """) results = pd.read_sql(repoGroupsSQL, self.database) return results @@ -48,7 +49,7 @@ def downloaded_repos(self): on repo.repo_id = b.repo_id JOIN repo_groups ON repo_groups.repo_group_id = repo.repo_group_id - order by commits_all_time desc + order by rg_name """) results = pd.read_sql(downloadedReposSQL, self.database) results['url'] = results['url'].apply(lambda datum: datum.split('//')[1]) From e87a9f9583e9b5b0fd26d793cb81bd9a3eb827a7 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 12:36:54 -0600 Subject: [PATCH 025/250] One more API returning alphabetical results. --- augur/metrics/util/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/augur/metrics/util/util.py b/augur/metrics/util/util.py index a83ffcf78e..85c7bf0e69 100644 --- a/augur/metrics/util/util.py +++ b/augur/metrics/util/util.py @@ -93,7 +93,7 @@ def repos_in_repo_groups(self, repo_group_id): JOIN repo_groups ON repo_groups.repo_group_id = repo.repo_group_id WHERE repo_groups.repo_group_id = :repo_group_id - ORDER BY commits_all_time DESC + ORDER BY repo.repo_name DESC """) results = pd.read_sql(repos_in_repo_groups_SQL, self.database, params={'repo_group_id': repo_group_id}) From bc1c31c500d27029a87026c0762f6bd36576efd9 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 12:48:33 -0600 Subject: [PATCH 026/250] repo name instead of repo group name. --- augur/metrics/util/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/augur/metrics/util/util.py b/augur/metrics/util/util.py index 85c7bf0e69..f6410328af 100644 --- a/augur/metrics/util/util.py +++ b/augur/metrics/util/util.py @@ -49,7 +49,7 @@ def downloaded_repos(self): on repo.repo_id = b.repo_id JOIN repo_groups ON repo_groups.repo_group_id = repo.repo_group_id - order by rg_name + order by repo_name """) results = pd.read_sql(downloadedReposSQL, self.database) results['url'] = results['url'].apply(lambda datum: datum.split('//')[1]) From 72b68429d57752d1cb19c343d1cf9904de2dc49b Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 13:02:18 -0600 Subject: [PATCH 027/250] Additional database updates for next release. --- util/scripts/install/schema_update.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index 3cdfc0a571..ea25b826e2 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -26,4 +26,9 @@ SELECT setval('"spdx"."projects_package_id_seq"', 1, false); ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNED BY "spdx"."projects"."package_id"; -ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; \ No newline at end of file +ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; + +-- Index Update for Performance. +CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( + "repo_name" +); \ No newline at end of file From 91e0a1f7f1bb25d26fe1e02bf3c8dffb2381b531 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 13:02:58 -0600 Subject: [PATCH 028/250] schema updates for next release. --- util/scripts/install/schema_update.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index ea25b826e2..0f7b557c86 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -31,4 +31,12 @@ ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; -- Index Update for Performance. CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( "repo_name" +); + +CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( + "repo_name" +); + +CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( + "rg_name" ASC ); \ No newline at end of file From 4ecbb81b0fedf2eb276021da60e8e331d0873292 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 13:20:31 -0600 Subject: [PATCH 029/250] updates to default sort order on repos and repo groups. --- augur/metrics/util/util.py | 2 +- frontend/src/views/RepoGroups.vue | 2 +- frontend/src/views/Repos.vue | 2 +- util/scripts/install/schema_update.sql | 11 ++++++++++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/augur/metrics/util/util.py b/augur/metrics/util/util.py index f6410328af..b0422424d9 100644 --- a/augur/metrics/util/util.py +++ b/augur/metrics/util/util.py @@ -93,7 +93,7 @@ def repos_in_repo_groups(self, repo_group_id): JOIN repo_groups ON repo_groups.repo_group_id = repo.repo_group_id WHERE repo_groups.repo_group_id = :repo_group_id - ORDER BY repo.repo_name DESC + ORDER BY repo.repo_git """) results = pd.read_sql(repos_in_repo_groups_SQL, self.database, params={'repo_group_id': repo_group_id}) diff --git a/frontend/src/views/RepoGroups.vue b/frontend/src/views/RepoGroups.vue index 0e4d407662..9f7e06cc70 100755 --- a/frontend/src/views/RepoGroups.vue +++ b/frontend/src/views/RepoGroups.vue @@ -151,7 +151,7 @@ loadedGroups: boolean = false; loadedSparks: boolean = false; ascending:boolean = false; - sortColumn: string ='rg_last_modified'; + sortColumn: string ='rg_name'; // declare Vuex action and getter diff --git a/frontend/src/views/Repos.vue b/frontend/src/views/Repos.vue index 981bce51ba..487e847ad6 100755 --- a/frontend/src/views/Repos.vue +++ b/frontend/src/views/Repos.vue @@ -156,7 +156,7 @@ export default class Repos extends Vue{ loadedRepos: boolean = false; ascending:boolean = false; - sortColumn: string ='commits_all_time'; + sortColumn: string ='url'; getRepoRelations!: any sortedRepos!:any loadRepos!:any; diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index 0f7b557c86..fa7f4d18b0 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -39,4 +39,13 @@ CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( "rg_name" ASC -); \ No newline at end of file +); + +CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( + "repo_group_id" +); + + + + + From 3626c8a348bedc1325479c9fcc20a69217f20c07 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 13:32:31 -0600 Subject: [PATCH 030/250] Update to index for repo list inside repo groups. --- util/scripts/install/schema_update.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index fa7f4d18b0..4d8c854406 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -28,7 +28,7 @@ OWNED BY "spdx"."projects"."package_id"; ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; --- Index Update for Performance. +-- Index Update for Performance CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( "repo_name" ); @@ -45,6 +45,10 @@ CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( "repo_group_id" ); +CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( + "repo_git" +); + From 14f94a8558b47e4c5e202b7f244dd647371ae294 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 9 Nov 2019 13:35:28 -0600 Subject: [PATCH 031/250] sort alphabetically in ascending order --- frontend/src/views/RepoGroups.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/RepoGroups.vue b/frontend/src/views/RepoGroups.vue index 9f7e06cc70..65d6a17a0c 100755 --- a/frontend/src/views/RepoGroups.vue +++ b/frontend/src/views/RepoGroups.vue @@ -150,7 +150,7 @@ themes: string[] = ['dark', 'info', 'royal-blue', 'warning']; loadedGroups: boolean = false; loadedSparks: boolean = false; - ascending:boolean = false; + ascending:boolean = true; sortColumn: string ='rg_name'; // declare Vuex action and getter From d74cd836010a386f5f9d3a2f8b96da92bdbfe3f9 Mon Sep 17 00:00:00 2001 From: Parth Sharma Date: Sun, 10 Nov 2019 14:58:52 +0530 Subject: [PATCH 032/250] add pull_request_repo data collection Signed-off-by: Parth Sharma --- .../pull_request_worker/worker.py | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/workers/pull_request_worker/pull_request_worker/worker.py b/workers/pull_request_worker/pull_request_worker/worker.py index 6038728d90..9acb641142 100644 --- a/workers/pull_request_worker/pull_request_worker/worker.py +++ b/workers/pull_request_worker/pull_request_worker/worker.py @@ -677,6 +677,10 @@ def query_pr_meta(self, head, base, pr_id): self.pr_meta_id_inc = int(result.inserted_primary_key[0]) self.results_counter += 1 + + if new_head[0]['repo']: + self.query_pr_repo(new_head[0]['repo'], 'head', self.pr_meta_id_inc) + else: logging.info('No new PR Head data to add') @@ -704,6 +708,10 @@ def query_pr_meta(self, head, base, pr_id): self.pr_meta_id_inc = int(result.inserted_primary_key[0]) self.results_counter += 1 + + if new_base[0]['repo']: + self.query_pr_repo(new_base[0]['repo'], 'base', self.pr_meta_id_inc) + else: logging.info('No new PR Base data to add') @@ -790,6 +798,49 @@ def query_pr_comments(self, owner, repo, gh_pr_no, pr_id): logging.info(f'Finished adding PR Message data for PR with id {pr_id}') + def query_pr_repo(self, pr_repo, pr_repo_type, pr_meta_id): + logging.info(f'Querying PR {pr_repo_type} repo') + + pseudo_key_gh = 'id' + psuedo_key_augur = 'pr_src_repo_id' + table = 'pull_request_repo' + pr_repo_table_values = self.get_table_values({psuedo_key_augur: pseudo_key_gh}, [table]) + + new_pr_repo = self.check_duplicates([pr_repo], pr_repo_table_values, pseudo_key_gh) + + if new_pr_repo: + if new_pr_repo[0]['owner'] and 'login' in new_pr_repo[0]['owner']: + cntrb_id = self.find_id_from_login(new_pr_repo[0]['owner']['login']) + else: + cntrb_id = 1 + + pr_repo = { + 'pr_repo_meta_id': pr_meta_id, + 'pr_repo_head_or_base': pr_repo_type, + 'pr_src_repo_id': new_pr_repo[0]['id'], + # 'pr_src_node_id': new_pr_repo[0]['node_id'], + 'pr_src_node_id': None, + 'pr_repo_name': new_pr_repo[0]['name'], + 'pr_repo_full_name': new_pr_repo[0]['full_name'], + 'pr_repo_private_bool': new_pr_repo[0]['private'], + 'pr_cntrb_id': cntrb_id, + 'tool_source': self.tool_source, + 'tool_version': self.tool_version, + 'data_source': self.data_source, + 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + } + + result = self.db.execute( + self.pull_request_repo_table.insert().values(pr_repo) + ) + logging.info(f'Added PR {pr_repo_type} repo {result.inserted_primary_key}') + + self.results_counter += 1 + + logging.info( + f'Finished adding PR {pr_repo_type} Repo data for PR with id {self.pr_id_inc}' + ) + def query_contributors(self, entry_info): From 483f69045b1e60eb3192d5f041fe1fbf3ca7a548 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sun, 10 Nov 2019 09:35:32 -0600 Subject: [PATCH 033/250] Sort order on repo list. --- frontend/src/views/Repos.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/Repos.vue b/frontend/src/views/Repos.vue index 487e847ad6..a5b323a917 100755 --- a/frontend/src/views/Repos.vue +++ b/frontend/src/views/Repos.vue @@ -155,7 +155,7 @@ export default class Repos extends Vue{ loadedRepos: boolean = false; - ascending:boolean = false; + ascending:boolean = true; sortColumn: string ='url'; getRepoRelations!: any sortedRepos!:any From 7ceb85104a51774dbc4200b89dfc3e9cf590cac9 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 11 Nov 2019 13:41:15 -0600 Subject: [PATCH 034/250] Added pull request worker job record. --- persistence_schema/5-seed-data.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/persistence_schema/5-seed-data.sql b/persistence_schema/5-seed-data.sql index d3d36442d0..3c1b01d86f 100644 --- a/persistence_schema/5-seed-data.sql +++ b/persistence_schema/5-seed-data.sql @@ -31,9 +31,10 @@ COMMIT; --- Job for GitHub Worker +-- Job for GitHub Worker and Pull Request Worker BEGIN; INSERT INTO "augur_operations"."worker_job" VALUES ('issues', 5, 0, '203', 'The issues model consists of contributors, issues, issue events, issue labels, and issue comments.', 1997, '2019-10-19 14:17:40', 0, 22); +INSERT INTO "augur_operations"."worker_job"("job_model", "state", "zombie_head", "since_id_str", "description", "last_count", "last_run", "analysis_state", "oauth_id") VALUES ('pull_requests', 5, 0, '0', 'The pull request model', 0, '2018-08-09 13:39:20', 0, 22); COMMIT; From c6ff9a3b02e983ad34a8d3e1e0ca0b7d6dee75b0 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Mon, 11 Nov 2019 12:12:40 -0600 Subject: [PATCH 035/250] Fix Travis build Signed-off-by: Carter Landis --- .travis.yml | 4 +- requirements.txt | 152 +++++++++++++++++++++-------------------------- 2 files changed, 70 insertions(+), 86 deletions(-) diff --git a/.travis.yml b/.travis.yml index c5d577a5c1..2e132d2b84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ matrix: include: - name: Python Datasource Unit Tests - install: python setup.py install; pip install . + install: pip install -r requirements.txt; python setup.py install language: python python: '3.6' script: - python -m pytest augur/metrics/**/test_**_functions.py - name: API Unit Tests - install: python setup.py install; pip install . + install: pip install -r requirements.txt; python setup.py install language: python python: '3.6' script: diff --git a/requirements.txt b/requirements.txt index 7aabc096cb..b4de6d9e85 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,100 +1,84 @@ -alabaster==0.7.10 +alabaster==0.7.12 +alembic==1.2.1 appnope==0.1.0 -asn1crypto==0.24.0 -atomicwrites==1.2.1 -attrs==18.2.0 -Babel==2.5.3 +atomicwrites==1.3.0 +attrs==19.3.0 +Babel==2.7.0 backcall==0.1.0 -Beaker==1.10.0 -beautifulsoup4==4.6.3 -certifi==2018.8.24 -cffi==1.11.5 +Beaker==1.11.0 +beautifulsoup4==4.8.1 +certifi==2019.9.11 chardet==3.0.4 Click==7.0 +colored==1.4.0 coloredlogs==10.0 -cryptography==2.3.1 -cycler==0.10.0 -Cython==0.28.5 -DateTime==4.2 -decorator==4.3.0 -Deprecated==1.2.3 -docopt==0.6.2 -docutils==0.14 -dulwich==0.19.2 -Flask==1.0.2 -Flask-Cors==3.0.6 +Cython==0.29.13 +decorator==4.4.1 +Deprecated==1.2.6 +docutils==0.15.2 +Flask==1.1.1 +Flask-Cors==3.0.8 Flask-Login==0.4.1 Flask-WTF==0.14.2 -gitdb2==2.0.4 -GitPython==2.1.11 +gitdb2==2.0.6 +GitPython==3.0.4 gunicorn==19.9.0 -humanfriendly==4.16.1 -idna==2.7 -imagesize==1.0.0 -ipdb==0.11 -ipykernel==4.8.2 -ipython==7.0.1 +humanfriendly==4.18 +idna==2.8 +imagesize==1.1.0 +importlib-metadata==0.23 +ipdb==0.12.2 +ipython==7.9.0 ipython-genutils==0.2.0 -itsdangerous==0.24 -jedi==0.13.1 -Jinja2==2.10.1 -jupyter-client==5.2.3 -jupyter-core==4.4.0 -kiwisolver==1.0.1 +itsdangerous==1.1.0 +jedi==0.15.1 +Jinja2==2.10.3 lockfile==0.12.2 -MarkupSafe==1.0 -matplotlib==2.2.2 -mkl-fft==1.0.0 -mkl-random==1.0.1 -more-itertools==4.3.0 -multiexit=1.4.1 -numpy==1.15.2 -packaging==17.1 -pandas==0.23.4 -parso==0.3.1 -pexpect==4.6.0 +Mako==1.1.0 +MarkupSafe==1.1.1 +more-itertools==7.2.0 +numpy==1.17.3 +packaging==19.2 +pandas==0.25.2 +parso==0.5.1 +pexpect==4.7.0 pickleshare==0.7.5 -pipreqs==0.4.9 -pluggy==0.7.1 -prompt-toolkit==2.0.6 -protobuf==3.6.1 +pluggy==0.13.0 +prompt-toolkit==2.0.10 +protobuf==3.10.0 +psycopg2-binary==2.8.4 ptyprocess==0.6.0 -py==1.7.0 -pycparser==2.19 -pyevent==0.0.1 -PyGithub==1.43.2 -Pygments==2.2.0 -PyJWT==1.6.4 -PyMySQL==0.9.2 -pyOpenSSL==17.5.0 -pyparsing==2.2.0 -pyperclip==1.7.0 -PySocks==1.6.8 -pytest==3.8.2 -python-daemon==2.1.2 -python-dateutil==2.7.3 -pytz==2018.5 -pyzmq==17.0.0 -requests>=2.21.0 +py==1.8.0 +PyGithub==1.44 +Pygments==2.4.2 +PyJWT==1.7.1 +PyMySQL==0.9.3 +pyparsing==2.4.2 +pytest==5.2.2 +python-dateutil==2.8.0 +python-editor==1.0.4 +pytz==2019.3 +requests==2.22.0 requests-file==1.4.3 -scipy==1.3.1 setuptools-git==1.2 -simplegeneric==0.8.1 -six==1.11.0 -smmap2==2.0.4 -snowballstemmer==1.2.1 -Sphinx==1.7.4 -sphinx_rtd_theme==0.4.2 -sphinxcontrib-websupport==1.0.1 -SQLAlchemy>=1.3.0 -tldextract==2.2.0 -tornado==5.0.2 -traitlets==4.3.2 -urllib3>=1.24.2 +six==1.12.0 +smmap2==2.0.5 +snowballstemmer==2.0.0 +soupsieve==1.9.4 +Sphinx==2.2.1 +sphinxcontrib-applehelp==1.0.1 +sphinxcontrib-devhelp==1.0.1 +sphinxcontrib-htmlhelp==1.0.2 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.2 +sphinxcontrib-serializinghtml==1.1.3 +SQLAlchemy==1.3.10 +tldextract==2.2.2 +traitlets==4.3.3 +urllib3==1.25.6 wcwidth==0.1.7 -Werkzeug==0.15.3 -wrapt==1.10.11 +Werkzeug==0.16.0 +wrapt==1.11.2 WTForms==2.2.1 -yarg==0.1.9 -zmq==15.1.0 -zope.interface==4.5.0 +XlsxWriter==1.2.2 +zipp==0.6.0 From 884a78378909ac2c2b572ca773232098668d33fc Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 14 Nov 2019 11:01:33 +0000 Subject: [PATCH 036/250] facade worker fix for timezone --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index dd90c8dd0e..ebef55696d 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -206,7 +206,7 @@ def discover_alias(email): affiliations_processed = cfg.get_setting('affiliations_processed') get_changed_affiliations = ("SELECT ca_domain FROM contributor_affiliations WHERE " - "ca_last_modified >= TO_TIMESTAMP(%s, 'YYYY-MM-DD HH:MM:SS'") + "ca_last_modified >= timestamptz %s") cfg.cursor_people.execute(get_changed_affiliations, (affiliations_processed, )) From 3334366ee225753e8d61d59df81f1ac8fedd0d00 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Thu, 14 Nov 2019 09:54:55 -0600 Subject: [PATCH 037/250] Pretty Print JSON SPDX Document Thanks Gabe H! Signed-off-by: Matt Snell --- frontend/src/components/charts/DownloadCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/charts/DownloadCard.vue b/frontend/src/components/charts/DownloadCard.vue index 681b626f62..19166fac81 100644 --- a/frontend/src/components/charts/DownloadCard.vue +++ b/frontend/src/components/charts/DownloadCard.vue @@ -44,7 +44,7 @@ } download(e: any) { - let uriContent = URL.createObjectURL(new Blob([JSON.stringify(this.values[0]['sbom_scan'])], {type : 'text/json;charset=utf-8'})); + let uriContent = URL.createObjectURL(new Blob([JSON.stringify(this.values[0]['sbom_scan'], null, 2)], {type : 'text/json;charset=utf-8'})); let link = document.createElement('a'); link.setAttribute('href', uriContent); link.setAttribute('download', "sbom_" + this.values[0]['sbom_scan']["Document Information"]['DocumentName'] + ".json"); From 033d9db6101c2a52e052b16526c55448bc7fdb4c Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 14 Nov 2019 10:57:17 -0500 Subject: [PATCH 038/250] Deployment Documentation Update --- docs/source/architecture/architecture.rst | 6 +- .../source/data-collection/worker-details.rst | 1 + .../source/deployment/augur-start-workers.rst | 34 +++++ docs/source/deployment/deployment-toc.rst | 25 ++++ .../source/deployment/nginx-configuration.rst | 136 ++++++++++++++++++ docs/source/index.rst | 1 + 6 files changed, 200 insertions(+), 3 deletions(-) create mode 100644 docs/source/deployment/augur-start-workers.rst create mode 100644 docs/source/deployment/deployment-toc.rst create mode 100644 docs/source/deployment/nginx-configuration.rst diff --git a/docs/source/architecture/architecture.rst b/docs/source/architecture/architecture.rst index 53cb8f0ade..c3b0ca6444 100644 --- a/docs/source/architecture/architecture.rst +++ b/docs/source/architecture/architecture.rst @@ -7,12 +7,12 @@ Augur's architecture consists of 5 primary pieces: Backend ---------- -1. Workers (``workers`` in the root ``augur/`` directory) which are reponsible for collecting data and inserting it into our unified data model +1. Workers (``workers`` in the root ``augur/`` directory) which are responsible for collecting data and inserting it into our unified data model 2. Broker (``augur.routes.broker``) which is reponsible for distributing data collection tasks to the correct workers -3. Housekeeper (``augur.housekeeper.housekeeper.Housekeeper``) which is reponsible for keeping the data up to date +3. Housekeeper (``augur.housekeeper.housekeeper.Housekeeper``) which is responsible for keeping the data up to date 4. A main class that's in charge of caching, registering plugins, and reading the configuration file (``augur.Application``) -5. A WSGI server built with Flask that exposes the datasources as a REST +5. A WSGI server built with `Flask `__ that exposes the datasources as a REST API (``augur.Server``, ``augur.runtime``) Technologies diff --git a/docs/source/data-collection/worker-details.rst b/docs/source/data-collection/worker-details.rst index 35ddb26208..f579454a61 100644 --- a/docs/source/data-collection/worker-details.rst +++ b/docs/source/data-collection/worker-details.rst @@ -1,2 +1,3 @@ Worker Details ============== + diff --git a/docs/source/deployment/augur-start-workers.rst b/docs/source/deployment/augur-start-workers.rst new file mode 100644 index 0000000000..9a7eee0416 --- /dev/null +++ b/docs/source/deployment/augur-start-workers.rst @@ -0,0 +1,34 @@ +Auto starting Augur Workers +---------------- + +To configure Augur's data collection workers to run continuously on startup, you set the workers parameter `switch` to `1`, instead of the default of `0`. The following workers support auto starting. We are still working the kinks out of autostart on some platforms, so please share your logs and any issues you encounter by opening up a GitHub issue. + +.. code-block:: json + + + "pull_request_worker": { + "port": 51552, + "switch": 1, + "workers": 1 + }, + "github_worker": { + "port": 51553, + "switch": 1, + "workers": 1 + }, + "insight_worker": { + "port": 51554, + "switch": 1, + "workers": 1 + }, + "repo_info_worker": { + "port": 51555, + "switch": 1, + "workers": 1 + }, + "value_worker": { + "port": 51556, + "switch": 1, + "workers": 1, + "scc_bin": '/home//go/bin/scc' + } \ No newline at end of file diff --git a/docs/source/deployment/deployment-toc.rst b/docs/source/deployment/deployment-toc.rst new file mode 100644 index 0000000000..aa30d99d22 --- /dev/null +++ b/docs/source/deployment/deployment-toc.rst @@ -0,0 +1,25 @@ +Deployment +================ + +This section details describes production deployment of Augur. + +nginx +---------------- + + + +.. toctree:: + :maxdepth: 1 + + nginx-configuration + augur-start-workers + + +**THIS SECTION IS UNDER CONSTRUCTION.** + +If you have questions or would like to help please open an issue on GitHub_. + +.. _GitHub: https://github.com/chaoss/augur + + + diff --git a/docs/source/deployment/nginx-configuration.rst b/docs/source/deployment/nginx-configuration.rst new file mode 100644 index 0000000000..e4b2f72bf7 --- /dev/null +++ b/docs/source/deployment/nginx-configuration.rst @@ -0,0 +1,136 @@ +Web Server Configuration +---------------- + +Configuring nginx for Augur to run behind nginx requires you to have certain options available for symlinks and other basic nginx options. The `nginx.conf` file below is one example of a configuration known to work. + +------------------ +Server Compilation +------------------ + +Your Augur instance must be compiled with publicly accessible domain that the front end instance will be able to access. + +1. As a practical matter, set your `augur.config.json` server block like this: + +.. code-block:: json + + "Server": { + "cache_expire": 3600, + "host": "you.domain.tld", + "port": "5000", + "workers": 8 + }, + +2. Compile augur (this wires the host and port into the front end so people pulling the web pages of Augur, in the `frontend/` subdirectory are referring to the right endpoints for this instance.): `make rebuild` +3. Run Augur: `nohup augur run >augur.log 2>augur.err &` + + +------------------ +nginx +------------------ + +nginx.conf +------------------ + +.. code-block:: json + + user www-data; + worker_processes auto; + pid /run/nginx.pid; + include /etc/nginx/modules-enabled/*.conf; + + worker_rlimit_nofile 30000; + + events { + worker_connections 768; + # multi_accept on; + } + + http { + + ## + # Basic Settings + ## + disable_symlinks off; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + # server_tokens off; + + server_names_hash_bucket_size 64; + # server_name_in_redirect off; + + include /etc/nginx/mime.types; + default_type application/octet-stream; + + ## + # SSL Settings + ## + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE + ssl_prefer_server_ciphers on; + + ## + # Logging Settings + ## + + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log; + + ## + # Gzip Settings + ## + + gzip on; + + # gzip_vary on; + # gzip_proxied any; + # gzip_comp_level 6; + # gzip_buffers 16 8k; + # gzip_http_version 1.1; + # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; + + ## + # Virtual Host Configs + ## + + include /etc/nginx/conf.d/*.conf; + include /etc/nginx/sites-enabled/*; + } + +Site Configuration +-------------------- + +This file will be located in your `/etc/nginx/sites-enabled` directory in most deployments. **Note that Augur's backend server must be running** + +.. code-block:: json + + server { + listen 80; + server_name <>; + + root /home/sean/github/<>/frontend/dist; + index index.html index.htm; + + location / { + root /home/sean/github/augur-census/frontend/dist; + try_files $uri $uri/ /index.html; + } + + # location /api/unstable/ { + # proxy_pass http://census.osshealth.io:5000; + # proxy_set_header Host $host; + # } + + location /api_docs/ { + root /home/sean/github/augur-census/frontend/public; + index index.html; + } + + + error_log /var/log/nginx/augur.censusscienceosshealth.error.log; + access_log /var/log/nginx/augur.censusscienceosshealth.access.log; + + } diff --git a/docs/source/index.rst b/docs/source/index.rst index c79c9ad62e..19dd544110 100755 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -16,6 +16,7 @@ Augur is a software suite that provides open source health and sustainability me architecture/architecture-toc library-documentation/library-documentation-toc data-collection/data-collection-toc + deployment/deployment-toc .. TODO: add me back later .. docker-install From bad2194e1b56bce0e31daa982e52e140cfb307df Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 14 Nov 2019 11:04:35 -0500 Subject: [PATCH 039/250] Fixing headings. --- docs/source/deployment/nginx-configuration.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/deployment/nginx-configuration.rst b/docs/source/deployment/nginx-configuration.rst index e4b2f72bf7..991789204a 100644 --- a/docs/source/deployment/nginx-configuration.rst +++ b/docs/source/deployment/nginx-configuration.rst @@ -28,6 +28,7 @@ Your Augur instance must be compiled with publicly accessible domain that the fr nginx ------------------ +------------------ nginx.conf ------------------ @@ -100,6 +101,7 @@ nginx.conf include /etc/nginx/sites-enabled/*; } +-------------------- Site Configuration -------------------- From 4f84994c31622691624b51ee46143a1c0d5b8441 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 14 Nov 2019 11:06:21 -0500 Subject: [PATCH 040/250] Fixing TOC. --- docs/source/deployment/deployment-toc.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/source/deployment/deployment-toc.rst b/docs/source/deployment/deployment-toc.rst index aa30d99d22..67f8ff11cf 100644 --- a/docs/source/deployment/deployment-toc.rst +++ b/docs/source/deployment/deployment-toc.rst @@ -3,10 +3,6 @@ Deployment This section details describes production deployment of Augur. -nginx ----------------- - - .. toctree:: :maxdepth: 1 From 3cfb55c1abd7c4ef4176a275c222220d0e0ae3f7 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Fri, 15 Nov 2019 09:16:43 -0600 Subject: [PATCH 041/250] Switch to version-locked deps in setuptools I'm massively oversimplifying for the sake of ease of explanation but the dependencies in setup.py were not locked to a specific version, so they would install the most recent version. When one runs python setup.py install, it installs those dependencies (in our case, the breaking example was gunicorn v20.0.0). Running pip install . also installs the dependencies located in setup.py, but also has a ton of benefits over python setup.py isntall. It's recommended to always use pip to install things, so I just moved the version-specific requirements from the requirements.txt file into setup.py, which will fix the issue for now. There is probably a better way to do it but I'm totally happy with this for now (edited) Now, all installation happens with pip install . or pip install -e . Signed-off-by: Carter Landis --- .travis.yml | 4 +- requirements.txt | 86 +------------------------------ setup.py | 90 +++++++++++++++++++++++++++++++-- util/scripts/install/backend.sh | 1 - util/scripts/install/workers.sh | 1 - 5 files changed, 89 insertions(+), 93 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2e132d2b84..779534d37c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ matrix: include: - name: Python Datasource Unit Tests - install: pip install -r requirements.txt; python setup.py install + install: pip install -r requirements.txt; language: python python: '3.6' script: - python -m pytest augur/metrics/**/test_**_functions.py - name: API Unit Tests - install: pip install -r requirements.txt; python setup.py install + install: pip install -r requirements.txt; language: python python: '3.6' script: diff --git a/requirements.txt b/requirements.txt index b4de6d9e85..e934dd4c6b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,84 +1,2 @@ -alabaster==0.7.12 -alembic==1.2.1 -appnope==0.1.0 -atomicwrites==1.3.0 -attrs==19.3.0 -Babel==2.7.0 -backcall==0.1.0 -Beaker==1.11.0 -beautifulsoup4==4.8.1 -certifi==2019.9.11 -chardet==3.0.4 -Click==7.0 -colored==1.4.0 -coloredlogs==10.0 -Cython==0.29.13 -decorator==4.4.1 -Deprecated==1.2.6 -docutils==0.15.2 -Flask==1.1.1 -Flask-Cors==3.0.8 -Flask-Login==0.4.1 -Flask-WTF==0.14.2 -gitdb2==2.0.6 -GitPython==3.0.4 -gunicorn==19.9.0 -humanfriendly==4.18 -idna==2.8 -imagesize==1.1.0 -importlib-metadata==0.23 -ipdb==0.12.2 -ipython==7.9.0 -ipython-genutils==0.2.0 -itsdangerous==1.1.0 -jedi==0.15.1 -Jinja2==2.10.3 -lockfile==0.12.2 -Mako==1.1.0 -MarkupSafe==1.1.1 -more-itertools==7.2.0 -numpy==1.17.3 -packaging==19.2 -pandas==0.25.2 -parso==0.5.1 -pexpect==4.7.0 -pickleshare==0.7.5 -pluggy==0.13.0 -prompt-toolkit==2.0.10 -protobuf==3.10.0 -psycopg2-binary==2.8.4 -ptyprocess==0.6.0 -py==1.8.0 -PyGithub==1.44 -Pygments==2.4.2 -PyJWT==1.7.1 -PyMySQL==0.9.3 -pyparsing==2.4.2 -pytest==5.2.2 -python-dateutil==2.8.0 -python-editor==1.0.4 -pytz==2019.3 -requests==2.22.0 -requests-file==1.4.3 -setuptools-git==1.2 -six==1.12.0 -smmap2==2.0.5 -snowballstemmer==2.0.0 -soupsieve==1.9.4 -Sphinx==2.2.1 -sphinxcontrib-applehelp==1.0.1 -sphinxcontrib-devhelp==1.0.1 -sphinxcontrib-htmlhelp==1.0.2 -sphinxcontrib-jsmath==1.0.1 -sphinxcontrib-qthelp==1.0.2 -sphinxcontrib-serializinghtml==1.1.3 -SQLAlchemy==1.3.10 -tldextract==2.2.2 -traitlets==4.3.3 -urllib3==1.25.6 -wcwidth==0.1.7 -Werkzeug==0.16.0 -wrapt==1.11.2 -WTForms==2.2.1 -XlsxWriter==1.2.2 -zipp==0.6.0 +# not a typo +. \ No newline at end of file diff --git a/setup.py b/setup.py index 0f5e6df07f..e5305815ef 100644 --- a/setup.py +++ b/setup.py @@ -37,11 +37,91 @@ ], keywords='ghtorrent github api data science', install_requires=[ - 'cython', 'protobuf', 'ipdb', 'setuptools-git', 'beautifulsoup4', 'flask', 'flask-cors', - 'PyMySQL', 'requests', 'python-dateutil', 'sqlalchemy', 'pandas', 'pytest', 'PyGithub', - 'GitPython', 'gunicorn', 'traitlets', 'coloredlogs', 'tldextract', 'beaker', 'lockfile', - 'werkzeug', 'flask-login', 'wtforms', 'Flask-WTF', 'alembic', 'colored', - 'prompt_toolkit', 'click', 'psycopg2-binary'], + 'alabaster==0.7.12', + 'alembic==1.2.1', + 'appnope==0.1.0', + 'atomicwrites==1.3.0', + 'attrs==19.3.0', + 'Babel==2.7.0', + 'backcall==0.1.0', + 'Beaker==1.11.0', + 'beautifulsoup4==4.8.1', + 'certifi==2019.9.11', + 'chardet==3.0.4', + 'Click==7.0', + 'colored==1.4.0', + 'coloredlogs==10.0', + 'Cython==0.29.13', + 'decorator==4.4.1', + 'Deprecated==1.2.6', + 'docutils==0.15.2', + 'Flask==1.1.1', + 'Flask-Cors==3.0.8', + 'Flask-Login==0.4.1', + 'Flask-WTF==0.14.2', + 'gitdb2==2.0.6', + 'GitPython==3.0.4', + 'gunicorn==19.9.0', + 'humanfriendly==4.18', + 'idna==2.8', + 'imagesize==1.1.0', + 'importlib-metadata==0.23', + 'ipdb==0.12.2', + 'ipython==7.9.0', + 'ipython-genutils==0.2.0', + 'itsdangerous==1.1.0', + 'jedi==0.15.1', + 'Jinja2==2.10.3', + 'lockfile==0.12.2', + 'Mako==1.1.0', + 'MarkupSafe==1.1.1', + 'more-itertools==7.2.0', + 'numpy==1.17.3', + 'packaging==19.2', + 'pandas==0.25.2', + 'parso==0.5.1', + 'pexpect==4.7.0', + 'pickleshare==0.7.5', + 'pluggy==0.13.0', + 'prompt-toolkit==2.0.10', + 'protobuf==3.10.0', + 'psycopg2-binary==2.8.4', + 'ptyprocess==0.6.0', + 'py==1.8.0', + 'PyGithub==1.44', + 'Pygments==2.4.2', + 'PyJWT==1.7.1', + 'PyMySQL==0.9.3', + 'pyparsing==2.4.2', + 'pytest==5.2.2', + 'python-dateutil==2.8.0', + 'python-editor==1.0.4', + 'pytz==2019.3', + 'requests==2.22.0', + 'requests-file==1.4.3', + 'setuptools-git==1.2', + 'six==1.12.0', + 'smmap2==2.0.5', + 'snowballstemmer==2.0.0', + 'soupsieve==1.9.4', + 'Sphinx==2.2.1', + 'sphinxcontrib-applehelp==1.0.1', + 'sphinxcontrib-devhelp==1.0.1', + 'sphinxcontrib-htmlhelp==1.0.2', + 'sphinxcontrib-jsmath==1.0.1', + 'sphinxcontrib-qthelp==1.0.2', + 'sphinxcontrib-serializinghtml==1.1.3', + 'SQLAlchemy==1.3.10', + 'tldextract==2.2.2', + 'traitlets==4.3.3', + 'urllib3==1.25.6', + 'wcwidth==0.1.7', + 'Werkzeug==0.16.0', + 'wrapt==1.11.2', + 'WTForms==2.2.1', + 'XlsxWriter==1.2.2', + 'zipp==0.6.0' + ], extras_require={ 'dev': ['check-manifest'], 'test': ['coverage'], diff --git a/util/scripts/install/backend.sh b/util/scripts/install/backend.sh index d62db4e22c..53463e80d8 100755 --- a/util/scripts/install/backend.sh +++ b/util/scripts/install/backend.sh @@ -9,5 +9,4 @@ echo pip install xlsxwriter setuptools; pip install sphinx rtd_sphinx_theme; npm install apidoc; -python setup.py install; pip install -e .; diff --git a/util/scripts/install/workers.sh b/util/scripts/install/workers.sh index fdc33b42ad..5ab996634b 100755 --- a/util/scripts/install/workers.sh +++ b/util/scripts/install/workers.sh @@ -23,7 +23,6 @@ do cd $WORKER rm -rf build/*; rm -rf dist/*; - python setup.py install; pip install -e . cd ../.. echo "Installing $FORMATTED_WORKER" From 1863650f5e3d4597183fe0eb8c45f44a14cbe893 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 11:53:16 -0600 Subject: [PATCH 042/250] Group no-warranty files together Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 59 ++++++++++++++++++++++------ 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index b669ec61a2..3ba81d06ff 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -333,18 +333,53 @@ def license_declared(self, repo_group_id, repo_id=None): repo_name_list = None license_declared_SQL = s.sql.text(""" - select a.license_id, b.short_name, count(*) from files_licenses a, licenses b, augur_repo_map c, packages d, files e - where a.license_id = b.license_id - and - d.package_id = c.dosocs_pkg_id - and - e.file_id = a.file_id - and - e.package_id = d.package_id - and - c.repo_id = :repo_id - group by a.license_id, b.short_name - order by b.short_name; + select the_license_id as license_id, short_name, sum(count) as count from +(SELECT A + .license_id as the_license_id, + b.short_name as short_name, + COUNT ( * ) +FROM + files_licenses A, + licenses b, + augur_repo_map C, + packages d, + files e +WHERE + A.license_id = b.license_id + AND d.package_id = C.dosocs_pkg_id + AND e.file_id = A.file_id + AND e.package_id = d.package_id + AND C.repo_id = 25158 + AND b.is_spdx_official = 't' +GROUP BY + the_license_id, + b.short_name +UNION +SELECT + 500 as the_license_id, + 'No Warranty' as short_name, + COUNT ( * ) +FROM + files_licenses A, + licenses b, + augur_repo_map C, + packages d, + files e +WHERE + A.license_id = b.license_id + AND d.package_id = C.dosocs_pkg_id + AND e.file_id = A.file_id + AND e.package_id = d.package_id + AND C.repo_id = 25158 + AND b.is_spdx_official = 'f' +GROUP BY + the_license_id, + short_name) L +GROUP BY + the_license_id, + short_name +ORDER BY + short_name; """) results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id}) From b3fcedd3dceb238303119d507b6626da681e9ad9 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 11:59:42 -0600 Subject: [PATCH 043/250] Beautify SQL Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 90 ++++++++++++++-------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 3ba81d06ff..912e403346 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -333,53 +333,53 @@ def license_declared(self, repo_group_id, repo_id=None): repo_name_list = None license_declared_SQL = s.sql.text(""" - select the_license_id as license_id, short_name, sum(count) as count from -(SELECT A - .license_id as the_license_id, - b.short_name as short_name, - COUNT ( * ) -FROM - files_licenses A, - licenses b, - augur_repo_map C, - packages d, - files e -WHERE - A.license_id = b.license_id - AND d.package_id = C.dosocs_pkg_id - AND e.file_id = A.file_id - AND e.package_id = d.package_id - AND C.repo_id = 25158 - AND b.is_spdx_official = 't' -GROUP BY - the_license_id, - b.short_name -UNION -SELECT - 500 as the_license_id, - 'No Warranty' as short_name, - COUNT ( * ) -FROM - files_licenses A, - licenses b, - augur_repo_map C, - packages d, - files e -WHERE - A.license_id = b.license_id - AND d.package_id = C.dosocs_pkg_id - AND e.file_id = A.file_id - AND e.package_id = d.package_id - AND C.repo_id = 25158 - AND b.is_spdx_official = 'f' -GROUP BY - the_license_id, - short_name) L -GROUP BY + select the_license_id as license_id, short_name, sum(count) as count from + (SELECT A + .license_id as the_license_id, + b.short_name as short_name, + COUNT ( * ) + FROM + files_licenses A, + licenses b, + augur_repo_map C, + packages d, + files e + WHERE + A.license_id = b.license_id + AND d.package_id = C.dosocs_pkg_id + AND e.file_id = A.file_id + AND e.package_id = d.package_id + AND C.repo_id = 25158 + AND b.is_spdx_official = 't' + GROUP BY + the_license_id, + b.short_name + UNION + SELECT + 500 as the_license_id, + 'No Warranty' as short_name, + COUNT ( * ) + FROM + files_licenses A, + licenses b, + augur_repo_map C, + packages d, + files e + WHERE + A.license_id = b.license_id + AND d.package_id = C.dosocs_pkg_id + AND e.file_id = A.file_id + AND e.package_id = d.package_id + AND C.repo_id = 25158 + AND b.is_spdx_official = 'f' + GROUP BY + the_license_id, + short_name) L + GROUP BY the_license_id, short_name -ORDER BY - short_name; + ORDER BY + short_name; """) results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id}) From 8a1d29c0926f693f5fad0a4ee9dff2811f023580 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 12:04:13 -0600 Subject: [PATCH 044/250] Fix hard-coded repo_id Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 41 ++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 912e403346..e3884773c1 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -320,6 +320,43 @@ def languages(self, repo_group_id, repo_id=None): results = pd.read_sql(languages_SQL, self.database, params={'repo_id': repo_id}) return results +@annotate(tag='license-files') +def license_declared(self, repo_group_id, repo_id=None, license_id): + """Returns the files related to a license + + :param repo_group_id: The repository's repo_group_id + :param repo_id: The repository's repo_id, defaults to None + :return: Declared License + """ + license_declared_SQL = None + repo_id_SQL = None + repo_name_list = None + + license_declared_SQL = s.sql.text(""" + SELECT A + .license_id as the_license_id, + b.short_name as short_name, + f.file_name + FROM + files_licenses A, + licenses b, + augur_repo_map C, + packages d, + files e, + packages_files f + WHERE + A.license_id = b.license_id + AND d.package_id = C.dosocs_pkg_id + AND e.file_id = A.file_id + AND e.package_id = d.package_id + AND C.repo_id = :repo_id + AND e.file_id = f.file_id + AND b.license_id = :license_id + """) + + results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id}) + return results + @annotate(tag='license-declared') def license_declared(self, repo_group_id, repo_id=None): """Returns the declared license @@ -349,7 +386,7 @@ def license_declared(self, repo_group_id, repo_id=None): AND d.package_id = C.dosocs_pkg_id AND e.file_id = A.file_id AND e.package_id = d.package_id - AND C.repo_id = 25158 + AND C.repo_id = :repo_id AND b.is_spdx_official = 't' GROUP BY the_license_id, @@ -370,7 +407,7 @@ def license_declared(self, repo_group_id, repo_id=None): AND d.package_id = C.dosocs_pkg_id AND e.file_id = A.file_id AND e.package_id = d.package_id - AND C.repo_id = 25158 + AND C.repo_id = :repo_id AND b.is_spdx_official = 'f' GROUP BY the_license_id, From 70bc3f90a55fb760ff1c4283e19406a4a130e60a Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 12:13:27 -0600 Subject: [PATCH 045/250] Add license-files API endpoint Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 25 ++++++++++++------------- augur/metrics/repo_meta/routes.py | 3 +++ 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index e3884773c1..a2fee3f2b8 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -321,7 +321,7 @@ def languages(self, repo_group_id, repo_id=None): return results @annotate(tag='license-files') -def license_declared(self, repo_group_id, repo_id=None, license_id): +def license_files(self, repo_group_id, repo_id=None, license_id, spdx_binary): """Returns the files related to a license :param repo_group_id: The repository's repo_group_id @@ -334,15 +334,9 @@ def license_declared(self, repo_group_id, repo_id=None, license_id): license_declared_SQL = s.sql.text(""" SELECT A - .license_id as the_license_id, - b.short_name as short_name, - f.file_name + .license_id as the_license_id, b.short_name as short_name, f.file_name FROM - files_licenses A, - licenses b, - augur_repo_map C, - packages d, - files e, + files_licenses A, licenses b, augur_repo_map C, packages d, files e, packages_files f WHERE A.license_id = b.license_id @@ -351,10 +345,15 @@ def license_declared(self, repo_group_id, repo_id=None, license_id): AND e.package_id = d.package_id AND C.repo_id = :repo_id AND e.file_id = f.file_id - AND b.license_id = :license_id - """) - - results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id}) + AND b.is_spdx_official = :spdx_binary + AND + ( + b.license_id = :license_id + OR + b.license_id in ( 369,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482)); + """) + + results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id, 'license_id': license_id, 'spdx_binary': spdx_binary}) return results @annotate(tag='license-declared') diff --git a/augur/metrics/repo_meta/routes.py b/augur/metrics/repo_meta/routes.py index 0626bd9a7a..cbe66138dc 100644 --- a/augur/metrics/repo_meta/routes.py +++ b/augur/metrics/repo_meta/routes.py @@ -138,6 +138,9 @@ def create_repo_meta_routes(server): """ server.addRepoMetric(metrics.code_changes_lines, 'code-changes-lines') + # TODO: document this + server.addRepoMetric(metrics.license_files, 'license-files') + # TODO: document this server.addRepoMetric(metrics.sbom_download, 'sbom-download') From 2bc20116a01a58d76c7ebc895753fbdcea709f8f Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 14:05:55 -0600 Subject: [PATCH 046/250] Add License-files to augur-api Signed-off-by: Matt Snell --- frontend/src/AugurAPI.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/AugurAPI.ts b/frontend/src/AugurAPI.ts index 067e591ec7..5c5559f035 100644 --- a/frontend/src/AugurAPI.ts +++ b/frontend/src/AugurAPI.ts @@ -468,6 +468,7 @@ class Repo extends BaseRepo{ this.addRepoMetric('forkCount','fork-count') this.addRepoMetric('languages','languages') this.addRepoMetric('committers','committers') + this.addRepoMetric('licenseFiles','license-files') this.addRepoMetric('licenseDeclared','license-declared') this.addRepoMetric('sbom','sbom-download') this.addRepoMetric('ciiBP','cii-best-practices-badge') From d38cf8a4ee5f169869b0d942a6adc41813d0d3f9 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 14:29:35 -0600 Subject: [PATCH 047/250] Fix API call for license data Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 18 +++++++++--------- augur/metrics/repo_meta/routes.py | 2 +- augur/server.py | 6 ++++++ 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index a2fee3f2b8..4c09fd2ad5 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -321,18 +321,18 @@ def languages(self, repo_group_id, repo_id=None): return results @annotate(tag='license-files') -def license_files(self, repo_group_id, repo_id=None, license_id, spdx_binary): +def license_files(self, license_id, spdx_binary, repo_group_id, repo_id=None,): """Returns the files related to a license :param repo_group_id: The repository's repo_group_id :param repo_id: The repository's repo_id, defaults to None :return: Declared License """ - license_declared_SQL = None + license_data_SQL = None repo_id_SQL = None repo_name_list = None - license_declared_SQL = s.sql.text(""" + license_data_SQL = s.sql.text(""" SELECT A .license_id as the_license_id, b.short_name as short_name, f.file_name FROM @@ -347,14 +347,14 @@ def license_files(self, repo_group_id, repo_id=None, license_id, spdx_binary): AND e.file_id = f.file_id AND b.is_spdx_official = :spdx_binary AND - ( - b.license_id = :license_id - OR - b.license_id in ( 369,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482)); + ( + b.license_id = :license_id + OR + b.license_id in ( 369,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482)); """) - results = pd.read_sql(license_declared_SQL, self.spdx_db, params={'repo_id': repo_id, 'license_id': license_id, 'spdx_binary': spdx_binary}) - return results + results = pd.read_sql(license_data_SQL, self.spdx_db, params={'repo_id': repo_id, 'spdx_binary': spdx_binary, 'license_id': license_id}) + return results @annotate(tag='license-declared') def license_declared(self, repo_group_id, repo_id=None): diff --git a/augur/metrics/repo_meta/routes.py b/augur/metrics/repo_meta/routes.py index cbe66138dc..670ba2ae9a 100644 --- a/augur/metrics/repo_meta/routes.py +++ b/augur/metrics/repo_meta/routes.py @@ -139,7 +139,7 @@ def create_repo_meta_routes(server): server.addRepoMetric(metrics.code_changes_lines, 'code-changes-lines') # TODO: document this - server.addRepoMetric(metrics.license_files, 'license-files') + server.addLicenseMetric(metrics.license_files, 'license-files') # TODO: document this server.addRepoMetric(metrics.sbom_download, 'sbom-download') diff --git a/augur/server.py b/augur/server.py index 9ed491ce77..c3066030ab 100644 --- a/augur/server.py +++ b/augur/server.py @@ -372,6 +372,12 @@ def generated_function(*args, **kwargs): generated_function.__name__ = func.__class__.__name__ + f"_{type_}_" + func.__name__ return generated_function + def addLicenseMetric(self, function, endpoint, **kwargs): + endpoint = f'/{self.api_version}/////{endpoint}' + self.app.route(endpoint)(self.routify(function, 'license_metric')) + kwargs['endpoint_type'] = 'license_metric' + self.updateMetricMetadata(function, endpoint, **kwargs) + def addRepoGroupMetric(self, function, endpoint, **kwargs): """Simplifies adding routes that accept repo_group_id""" endpoint = f'/{self.api_version}/repo-groups//{endpoint}' From 8f8f8311ac84e0f79519691d2fa1e1cb59f9dbab Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 15 Nov 2019 15:03:46 -0600 Subject: [PATCH 048/250] Add proper links to API (not finished) Signed-off-by: Matt Snell --- frontend/src/components/charts/LicenseTable.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 75b78dfc7c..174d7ac7eb 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -12,7 +12,18 @@ {{el['short_name']}} - {{el['count']}} + + + + From 49c1c184799aaa83726912bdcf737c2163b54818 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sun, 17 Nov 2019 16:19:42 -0600 Subject: [PATCH 049/250] Update badging worker to use JSON field in DB Signed-off-by: Carter Landis --- augur/metrics/repo_meta/repo_meta.py | 22 +++++++++----- .../linux_badge_worker/worker.py | 29 +++++-------------- 2 files changed, 23 insertions(+), 28 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index b669ec61a2..4d46a80236 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -189,8 +189,7 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): # Welcome to the Twilight Zone if repo_id: cii_best_practices_badge_SQL = s.sql.text(""" - SELECT repo_name, rg_name, repo_badging.badge_level, achieve_passing_status, - achieve_silver_status, tiered_percentage, repo_url, id, repo_badging.updated_at as date + SELECT repo_name, rg_name, repo_badging.data, repo_badging.created_at as date FROM repo_badging, repo, repo_groups WHERE repo.repo_group_id = repo_groups.repo_group_id AND repo.repo_id = repo_badging.repo_id AND repo_badging.repo_id = :repo_id @@ -198,13 +197,11 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): LIMIT 1 """) - logger.debug(cii_best_practices_badge_SQL) params = {'repo_id': repo_id} else: cii_best_practices_badge_SQL = s.sql.text(""" - SELECT repo_name, rg_name, repo_badging.badge_level, achieve_passing_status, - achieve_silver_status, tiered_percentage, repo_url, id, repo_badging.updated_at as date + SELECT repo_name, rg_name, repo_badging.data, repo_badging.created_at as date FROM repo_badging, repo, repo_groups WHERE repo.repo_group_id = repo_groups.repo_group_id AND repo.repo_id = repo_badging.repo_id AND repo.repo_group_id = :repo_group_id @@ -212,10 +209,21 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): LIMIT 1 """) - logger.debug(cii_best_practices_badge_SQL) params = {'repo_group_id': repo_group_id, 'repo_id': repo_id} - return pd.read_sql(cii_best_practices_badge_SQL, self.database, params=params) + raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params=params) + badging_data = raw_df.iloc[0,2] + + result = { + "repo_name": raw_df.iloc[0,0], + "rg_name": raw_df.iloc[0,1] + } + + for item in badging_data.items(): + if item[0] in ["badge_level", "achieve_passing_status", "achieve_silver_status", "tiered_percentage", "repo_url", "id"]: + result[item[0]] = item[1] + + return pd.DataFrame(result, index=[0]) @annotate(tag='forks') def forks(self, repo_group_id, repo_id=None): diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 52256b037c..b0e73b3479 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -7,6 +7,8 @@ from sqlalchemy import MetaData logging.basicConfig(filename='worker.log', level=logging.INFO, filemode='w') +import ipdb + class CollectorTask: """ Worker's perception of a task in its queue Holds a message type (EXIT, TASK, etc) so the worker knows how to process the queue entry @@ -64,6 +66,7 @@ def __init__(self, config, task=None): self.DB_STR = 'postgresql://{}:{}@{}:{}/{}'.format( self.config['user'], self.config['password'], self.config['host'], self.config['port'], self.config['database'] ) + logging.info(self.DB_STR) dbschema='augur_data' # Searches left-to-right self.db = s.create_engine(self.DB_STR, poolclass=s.pool.NullPool, @@ -77,6 +80,7 @@ def __init__(self, config, task=None): # such as 'only' to limit what tables we look at... metadata.reflect(self.db, only=['repo_badging']) + # we can then produce a set of mappings from this MetaData. Base = automap_base(metadata=metadata) @@ -86,18 +90,6 @@ def __init__(self, config, task=None): # mapped classes are ready self.table = Base.classes.repo_badging.__table__ - - # """ Query all repos """ - repoUrlSQL = s.sql.text(""" - SELECT repo_git, repo_id FROM repo - """) - rs = pd.read_sql(repoUrlSQL, self.db, params={}) - - #fill queue - for index, row in rs.iterrows(): - entry_info = {"git_url": row["repo_git"], "repo_id": row["repo_id"]} - self._queue.put(CollectorTask(message_type='TASK', entry_info=entry_info)) - self.run() requests.post('http://{}:{}/api/workers'.format(self.config['broker_host'],self.config['broker_port'], json=specs)) #hello message @@ -158,11 +150,6 @@ def collect(self, num): Query the github api for contributors and issues (not yet implemented) """ git_url = str(num) - - # Handles git url case by removing the extension - #if ".git" in git_url: - # git_url = git_url[:-4] - extension = "/en/projects/" + str(git_url) + ".json" url = self.config['endpoint'] + extension @@ -170,15 +157,15 @@ def collect(self, num): print(url) logging.info("Hitting endpoint: " + url + " ...\n") r = requests.get(url=url) - #print(r) data = r.json() if data != 0 and "404" not in str(r): #print(data) print("FOUND") - #data[0]['repo_id'] = entry_info['repo_id'] + # data[0]['repo_id'] = entry_info['repo_id'] - self.db.execute(self.table.insert().values(data)) - #logging.info("Inserted badging info for repo: " + str(entry_info['repo_id']) + "\n") + # ipdb.set_trace() + self.db.execute(self.table.insert().values(data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) + # logging.info("Inserted badging info for repo: " + str(entry_info['repo_id']) + "\n") """ task_completed = entry_info task_completed['worker_id'] = self.config['id'] From 2be818689508a4bd4298ac528c0b20e362af83ab Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sun, 17 Nov 2019 19:49:53 -0600 Subject: [PATCH 050/250] Increased delay between starting workers so that multiple instances is more stable/reliable, prioritized ordering based on the difference of collected data and repo_info insertions, reorganized broker in order to have more stable worker-restarting --- augur/cli/run.py | 13 +---- augur/housekeeper/housekeeper.py | 84 ++++++++++++++++++++++++-------- augur/routes/broker.py | 74 +++++++++++++++------------- 3 files changed, 106 insertions(+), 65 deletions(-) diff --git a/augur/cli/run.py b/augur/cli/run.py index c352e4dc43..bed2ab69ba 100644 --- a/augur/cli/run.py +++ b/augur/cli/run.py @@ -1,6 +1,3 @@ -import click -import os -import sys from augur.runtime import pass_application from augur.util import logger from augur.server import Server @@ -9,13 +6,7 @@ from gunicorn.arbiter import Arbiter import multiprocessing as mp from augur.housekeeper.housekeeper import Housekeeper -import sched -import os -import time -import sys -import atexit -import click -import subprocess +import os, time, sys, atexit, click, subprocess @click.command('run') @click.option('--enable-housekeeper/--no-enable-housekeeper', default=True) @@ -136,7 +127,7 @@ def exit(): master = Arbiter(AugurGunicornApp(options, manager=manager, broker=broker, housekeeper=housekeeper)).run() def worker_start(worker_name=None, instance_number=0): - time.sleep(45 * instance_number) + time.sleep(90 * instance_number) process = subprocess.Popen("cd workers/{} && {}_start".format(worker_name,worker_name), shell=True) class AugurGunicornApp(gunicorn.app.base.BaseApplication): diff --git a/augur/housekeeper/housekeeper.py b/augur/housekeeper/housekeeper.py index 4b108c4ef6..32f5563069 100644 --- a/augur/housekeeper/housekeeper.py +++ b/augur/housekeeper/housekeeper.py @@ -1,15 +1,12 @@ """ Keeps data up to date """ - -import logging -import requests +import logging, requests, os, json, time +from sqlalchemy.ext.automap import automap_base from multiprocessing import Process, Queue -import time import sqlalchemy as s import pandas as pd -import os -import json +from sqlalchemy import MetaData logging.basicConfig(filename='housekeeper.log') class Housekeeper: @@ -31,6 +28,13 @@ def __init__(self, jobs, broker, broker_host, broker_port, user, password, host, self.helper_db = s.create_engine(DB_STR, poolclass = s.pool.NullPool, connect_args={'options': '-csearch_path={}'.format(helper_schema)}) + helper_metadata = MetaData() + helper_metadata.reflect(self.helper_db, only=['worker_job']) + HelperBase = automap_base(metadata=helper_metadata) + HelperBase.prepare() + + self.job_table = HelperBase.classes.worker_job.__table__ + repoUrlSQL = s.sql.text(""" SELECT repo_git FROM repo """) @@ -168,15 +172,46 @@ def prep_jobs(self, jobs): for job in jobs: if 'repo_group_id' in job: - if job['repo_group_id'] != 0: - # Query all repos and last repo id - repoUrlSQL = s.sql.text(""" - SELECT repo_git, repo_id FROM repo WHERE repo_group_id = {} ORDER BY repo_id ASC - """.format(job['repo_group_id'])) - else: - repoUrlSQL = s.sql.text(""" - SELECT repo_git, repo_id FROM repo ORDER BY repo_id ASC - """.format(job['repo_group_id'])) + # If RG id is 0 then it just means to query all repos + where_and = 'AND' if job['model'] in ['issues', 'pull_requests'] else 'WHERE' + where_condition = '{} repo_group_id = {}'.format(where_and, job['repo_group_id']) if job['repo_group_id'] != 0 else '' + repoUrlSQL = s.sql.text(""" + SELECT a.repo_id, a.repo_git, b.pull_request_count, d.repo_id AS pr_repo_id, count(*) AS pr_collected_count, + (b.pull_request_count-count(*)) AS prs_missing, + abs(cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.pull_request_count AS DOUBLE PRECISION), 0)) AS ratio_abs, + (cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.pull_request_count AS DOUBLE PRECISION), 0)) AS ratio_prs + FROM repo a, pull_requests d, repo_info b, ( + SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info + GROUP BY repo_id + ORDER BY repo_id) e + WHERE a.repo_id = b.repo_id AND + a.repo_id = d.repo_id AND + b.repo_id = d.repo_id AND + b.data_collection_date = e.last_collected + {} + GROUP BY a.repo_id, d.repo_id, b.pull_request_count + ORDER BY ratio_abs; + """.format(where_condition)) if job['model'] == 'pull_requests' else s.sql.text(""" + SELECT a.repo_id, a.repo_git, b.issues_count, d.repo_id AS pr_repo_id, count(*) AS issues_collected_count, + (b.issues_count-count(*)) AS issues_missing, + abs(cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.issues_count AS DOUBLE PRECISION), 0)) AS ratio_abs, + (cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.issues_count AS DOUBLE PRECISION), 0)) AS ratio_issues + FROM repo a, issues d, repo_info b, + ( + SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info + GROUP BY repo_id + ORDER BY repo_id) e + WHERE a.repo_id = b.repo_id AND + a.repo_id = d.repo_id AND + b.repo_id = d.repo_id AND + b.data_collection_date = e.last_collected + AND d.pull_request_id IS NULL + {} + GROUP BY a.repo_id, d.repo_id, b.issues_count + ORDER BY ratio_abs; + """.format(where_condition)) if job['model'] == 'issues' else s.sql.text(""" + SELECT repo_git, repo_id FROM repo {} ORDER BY repo_id ASC + """.format(where_condition)) rs = pd.read_sql(repoUrlSQL, self.db, params={}) if len(rs) == 0: logging.info("Trying to send tasks for repo group with id: {}, but the repo group does not contain any repos".format(job['repo_group_id'])) @@ -192,6 +227,15 @@ def prep_jobs(self, jobs): job_df = pd.read_sql(repoIdSQL, self.helper_db, params={}) + # If there is no job tuple found, insert one + if len(job_df) == 0: + job_tuple = { + 'job_model': job['model'], + 'oauth_id': 0 + } + result = self.helper_db.execute(self.job_table.insert().values(job_tuple)) + logging.info("No job tuple for {} model was found, so one was inserted into the job table: {}".format(job['model'], job_tuple)) + # If a last id is not recorded, start from beginning of repos # (first id is not necessarily 0) try: @@ -216,11 +260,13 @@ def prep_jobs(self, jobs): # Rearrange repos so the one after the last one that - # was completed will be ran first - before_repos = rs.loc[rs['repo_id'].astype(int) < last_id] - after_repos = rs.loc[rs['repo_id'].astype(int) >= last_id] + # was completed will be ran first (if prioritized ordering is not available/enabled) + reorganized_repos = rs + if job['model'] not in ['issues', 'pull_requests']: + before_repos = rs.loc[rs['repo_id'].astype(int) < last_id] + after_repos = rs.loc[rs['repo_id'].astype(int) >= last_id] - reorganized_repos = after_repos.append(before_repos) + reorganized_repos = after_repos.append(before_repos) if 'all_focused' in job: reorganized_repos['focused_task'] = job['all_focused'] diff --git a/augur/routes/broker.py b/augur/routes/broker.py index f2c0e6a926..ad7d9005bc 100644 --- a/augur/routes/broker.py +++ b/augur/routes/broker.py @@ -6,7 +6,10 @@ import logging import json, requests, time -def send_task(task, worker_proxy): +def worker_start(worker_name=None): + process = subprocess.Popen("cd workers/{} && {}_start".format(worker_name,worker_name), shell=True) + +def send_task(worker_proxy): # Defining local variables for convenience/readability user_queue = worker_proxy['user_queue'] @@ -19,34 +22,38 @@ def send_task(task, worker_proxy): worker_proxy['location'])) j = r.json() - if 'status' in j: - if j['status'] == 'alive': - if len(user_queue) > 0: - new_task = user_queue.pop(0) - logging.info("Worker {} is idle, preparing to send the {} task to {}".format(worker_id, new_task['display_name'], task_endpoint)) - try: - requests.post(task_endpoint, json=new_task) - worker_proxy['status'] = 'Working' - except: - logging.info("Sending Worker: {} a task did not return a response, setting worker status as 'Disconnected'".format(worker_id)) - worker_proxy['status'] = 'Disconnected' - elif len(maintain_queue) > 0: - new_task = maintain_queue.pop(0) - logging.info("Worker {} is idle, preparing to send the {} task to {}".format(worker_id, new_task['display_name'], task_endpoint)) - try: - requests.post(task_endpoint, json=new_task) - worker_proxy['status'] = 'Working' - except: - logging.info("Sending Worker: {} a task did not return a response, setting worker status as 'Disconnected'".format(worker_id)) - worker_proxy['status'] = 'Disconnected' - else: - logging.info("Both queues are empty for worker {}".format(worker_id)) - worker_proxy['status'] = 'Idle' - else: - logging.info("Worker: {} is busy, setting its status as so.".format(worker_id)) - else: + if 'status' not in j: logging.info("Worker: {}'s heartbeat did not return a response, setting worker status as 'Disconnected'".format(worker_id)) worker_proxy['status'] = 'Disconnected' + return + + if j['status'] != 'alive': + logging.info("Worker: {} is busy, setting its status as so.".format(worker_id)) + return + + # Want to check user-created job requests first + if len(user_queue) > 0: + new_task = user_queue.pop(0) + + # If no user-created job requests, move on to regulated/maintained ones + elif len(maintain_queue) > 0: + new_task = maintain_queue.pop(0) + + else: + logging.info("Both queues are empty for worker {}".format(worker_id)) + worker_proxy['status'] = 'Idle' + return + + logging.info("Worker {} is idle, preparing to send the {} task to {}".format(worker_id, new_task['display_name'], task_endpoint)) + try: + requests.post(task_endpoint, json=new_task) + worker_proxy['status'] = 'Working' + except: + logging.info("Sending Worker: {} a task did not return a response, setting worker status as 'Disconnected'".format(worker_id)) + worker_proxy['status'] = 'Disconnected' + # If the worker died, then restart it + worker_start(worker_id.split('.')[len(worker_id.split('.')) - 2]) + def create_broker_routes(server): @@ -70,17 +77,14 @@ def task(): if type(server.broker[worker_id]._getvalue()) != dict: continue compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]] = compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]] if worker_id.split('.')[len(worker_id.split('.'))-2] in compatible_workers else {'task_load': len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), 'worker_id': worker_id} - # logging.info("{}, {}, {}".format(worker_id.split('.')[len(worker_id.split('.'))-2], compatible_workers.keys(), compatible_workers)) - # logging.info("\n here is the list we about to compose: {} \n".format([compatible_workers[w]['task_load'] for w in compatible_workers.keys() if worker_id.split('.')[len(worker_id.split('.'))-2] == w])) if (len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue'])) < min([compatible_workers[w]['task_load'] for w in compatible_workers.keys() if worker_id.split('.')[len(worker_id.split('.'))-2] == w]): - logging.info("Compatible worker: {} with smallest task load: {} found to work on task: {}".format(worker_id, len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), task)) compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]]['task_load'] = len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']) compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]]['worker_id'] = worker_id - for worker_type in compatible_workers.keys(): worker_id = compatible_workers[worker_type]['worker_id'] worker = server.broker[worker_id] + logging.info("Compatible worker: {} with smallest task load: {} found to work on task: {}".format(worker_id, len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), task)) if task['job_type'] == "UPDATE": worker['user_queue'].append(task) @@ -90,7 +94,7 @@ def task(): logging.info("Added task for model: {}. New length of worker {}'s maintain queue: {}".format(model, worker_id, str(len(server.broker[worker_id]['maintain_queue'])))) if worker['status'] == 'Idle': - send_task(task, worker) + send_task(worker) worker_found = True # Otherwise, let the frontend know that the request can't be served if not worker_found: @@ -129,7 +133,7 @@ def worker(): time.sleep(10) server.broker[worker['id']]['status'] = 'Idle' - send_task(task, server.broker[worker['id']]) + send_task(server.broker[worker['id']]) return Response(response=worker['id'], status=200, @@ -147,7 +151,7 @@ def sync_queue(): maintain_queue = server.broker[worker]['maintain_queue'] if server.broker[worker]['status'] != 'Disconnected': - send_task(task, server.broker[worker]) + send_task(server.broker[worker]) except Exception as e: logging.info("Ran into error: {}".format(repr(e))) logging.info("A past instance of the {} worker finished a previous leftover task.".format(worker)) @@ -186,7 +190,7 @@ def task_error(): if worker_id in server.broker: if server.broker[worker_id]['status'] != 'Disconnected': logging.info("{} ran into error while completing task: {}".format(worker_id, task)) - send_task(task, server.broker[worker_id]) + send_task(server.broker[worker_id]) else: logging.info("A previous instance of {} ran into error while completing task: {}".format(worker_id, task)) return Response(response=request.json, From d391f506f188e811ef54f7f209462fd698e98ce6 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sun, 17 Nov 2019 19:51:11 -0600 Subject: [PATCH 051/250] github worker reorganization, capabilities for multiple instances, and shared standard methods implemented --- .../github_worker/github_worker/runtime.py | 1 - workers/github_worker/github_worker/worker.py | 371 ++++++------------ 2 files changed, 124 insertions(+), 248 deletions(-) diff --git a/workers/github_worker/github_worker/runtime.py b/workers/github_worker/github_worker/runtime.py index 5b6fd92ba4..0c904f7ffe 100644 --- a/workers/github_worker/github_worker/runtime.py +++ b/workers/github_worker/github_worker/runtime.py @@ -73,7 +73,6 @@ def main(augur_url, host, port): "broker_port": server['port'], "broker_host": server['host'], "location": "http://{}:{}".format(server['host'],worker_port), - "zombie_id": 22, "host": credentials["host"], "key": credentials["key"], "password": credentials["password"], diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 5eb73b7486..6df39ba5cb 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -1,36 +1,12 @@ from multiprocessing import Process, Queue from urllib.parse import urlparse -import requests import pandas as pd import sqlalchemy as s from sqlalchemy.ext.automap import automap_base from sqlalchemy import MetaData -import datetime -import time -import logging -import json -import ast -import os - -class CollectorTask: - """ Worker's perception of a task in its queue - Holds a message type (EXIT, TASK, etc) so the worker knows how to process the queue entry - and the github_url given that it will be collecting data for - """ - def __init__(self, message_type='TASK', entry_info=None): - self.type = message_type - self.entry_info = entry_info - -def dump_queue(queue): - """ - Empties all pending items in a queue and returns them in a list. - """ - result = [] - queue.put("STOP") - for i in iter(queue.get, 'STOP'): - result.append(i) - # time.sleep(.1) - return result +import requests, time, logging, json, os +from datetime import datetime +from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class GitHubWorker: """ Worker that collects data from the Github API and stores it in our database @@ -46,24 +22,17 @@ def __init__(self, config, task=None): self._task = task self._child = None self._queue = Queue() - self._maintain_queue = Queue() self.working_on = None self.db = None self.table = None - self.API_KEY = self.config['key'] self.tool_source = 'GitHub API Worker' self.tool_version = '0.0.3' # See __init__.py self.data_source = 'GitHub API' self.results_counter = 0 - self.headers = {'Authorization': 'token %s' % self.config['key']} self.history_id = None self.finishing_task = False - url = "https://api.github.com/users/gabe-heim" - response = requests.get(url=url, headers=self.headers) - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) - - specs = { + self.specs = { "id": self.config['id'], "location": self.config['location'], "qualifications": [ @@ -93,9 +62,8 @@ def __init__(self, config, task=None): helper_metadata = MetaData() metadata.reflect(self.db, only=['contributors', 'issues', 'issue_labels', 'message', - 'issue_message_ref', 'issue_events', - 'issue_assignees','contributors_aliases']) - helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job']) + 'issue_message_ref', 'issue_events','issue_assignees','contributors_aliases']) + helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job', 'worker_oauth']) Base = automap_base(metadata=metadata) HelperBase = automap_base(metadata=helper_metadata) @@ -124,7 +92,6 @@ def __init__(self, config, task=None): rs = pd.read_sql(maxIssueSQL, self.db, params={}) issue_start = int(rs.iloc[0]["issue_id"]) if rs.iloc[0]["issue_id"] is not None else 25150 - maxCntrbSQL = s.sql.text(""" SELECT max(contributors.cntrb_id) AS cntrb_id FROM contributors @@ -132,7 +99,6 @@ def __init__(self, config, task=None): rs = pd.read_sql(maxCntrbSQL, self.db, params={}) cntrb_start = int(rs.iloc[0]["cntrb_id"]) if rs.iloc[0]["cntrb_id"] is not None else 25150 - maxMsgSQL = s.sql.text(""" SELECT max(msg_id) AS msg_id FROM message @@ -145,22 +111,39 @@ def __init__(self, config, task=None): self.cntrb_id_inc = (cntrb_start + 1) self.msg_id_inc = (msg_start + 1) - connected = False - for i in range(5): - try: - logging.info("attempt {}".format(i)) - if i > 0: - time.sleep(10) - requests.post('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'],self.config['broker_port']), json=specs) - logging.info("Connection to the broker was successful") - connected = True - break - except requests.exceptions.ConnectionError: - logging.error('Cannot connect to the broker. Trying again...') - if not connected: - sys.exit('Could not connect to the broker after 5 attempts! Quitting...') + # Organize different api keys/oauths available + self.oauths = [] + self.headers = None + # Endpoint to hit solely to retrieve rate limit information from headers of the response + url = "https://api.github.com/users/gabe-heim" + + # Make a list of api key in the config combined w keys stored in the database + oauthSQL = s.sql.text(""" + SELECT * FROM worker_oauth WHERE access_token <> '{}' + """.format(config['key'])) + for oauth in [{'oauth_id': 0, 'access_token': config['key']}] + json.loads(pd.read_sql(oauthSQL, self.helper_db, params={}).to_json(orient="records")): + self.headers = {'Authorization': 'token %s' % oauth['access_token']} + logging.info("Getting rate limit info for oauth: {}".format(oauth)) + response = requests.get(url=url, headers=self.headers) + self.oauths.append({ + 'oauth_id': oauth['oauth_id'], + 'key': oauth['access_token'], + 'rate_limit': int(response.headers['X-RateLimit-Remaining']), + 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() + }) + logging.info("Found OAuth available for use: {}".format(self.oauths[-1])) + + if len(self.oauths) == 0: + logging.info("No API keys detected, please include one in your config or in the worker_oauths table in the augur_operations schema of your database\n") + + # First key to be used will be the one specified in the config (first element in + # self.oauths array will always be the key in use) + self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + + # Send broker hello message + connect_to_broker(self, logging.getLogger()) + def update_config(self, config): """ Method to update config and set a default @@ -173,7 +156,6 @@ def update_config(self, config): "type": "string" } self.config.update(config) - self.API_KEY = self.config['key'] @property def task(self): @@ -186,34 +168,22 @@ def task(self, value): """ entry point for the broker to add a task to the queue Adds this task to the queue, and calls method to process queue """ - github_url = value['given']['github_url'] + + if value['job_type'] == "UPDATE" or value['job_type'] == "MAINTAIN": + self._queue.put(value) - """ Query all repos """ - repoUrlSQL = s.sql.text(""" - SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' - """.format(github_url)) - rs = pd.read_sql(repoUrlSQL, self.db, params={}) - try: - repo_id = int(rs.iloc[0]['repo_id']) - if value['job_type'] == "UPDATE": - self._queue.put(CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id})) - elif value['job_type'] == "MAINTAIN": - self._maintain_queue.put(CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id})) - if 'focused_task' in value: - if value['focused_task'] == 1: - logging.info("focused task is ON\n") - self.finishing_task = True - else: - self.finishing_task = False - logging.info("focused task is OFF\n") + if 'focused_task' in value: + if value['focused_task'] == 1: + logging.info("Focused task is ON\n") + self.finishing_task = True else: self.finishing_task = False - logging.info("focused task is OFF\n") - - except Exception as e: - logging.info("error: {}, or that repo is not in our database: {}".format(str(e), str(value))) + logging.info("Focused task is OFF\n") + else: + self.finishing_task = False + logging.info("focused task is OFF\n") - self._task = CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id}) + self._task = value self.run() def cancel(self): @@ -234,65 +204,34 @@ def collect(self): Determines what action to take based off the message type """ while True: - time.sleep(0.5) if not self._queue.empty(): message = self._queue.get() - self.working_on = "UPDATE" + self.working_on = message['job_type'] else: - if not self._maintain_queue.empty(): - message = self._maintain_queue.get() - logging.info("Popped off message: {}\n".format(str(message.entry_info))) - self.working_on = "MAINTAIN" - else: - break - - if message.type == 'EXIT': break + logging.info("Popped off message: {}\n".format(str(message))) - if message.type != 'TASK': - raise ValueError(f'{message.type} is not a recognized task type') - - if message.type == 'TASK': - try: - github_url = message.entry_info['task']['given']['github_url'] - if message.entry_info['task']['models'][0] == 'contributors': - self.contributor_model({'github_url': github_url, 'repo_id': message.entry_info['repo_id']}) - if message.entry_info['task']['models'][0] == 'issues': - self.query_issues({'github_url': github_url, 'repo_id': message.entry_info['repo_id']}) - except Exception as e: - logging.info("Worker ran into an error for task: {}\n".format(message.entry_info['task'])) - logging.info("Error encountered: " + repr(e) + "\n") - logging.info("Notifying broker and logging task failure in database...\n") - message.entry_info['task']['worker_id'] = self.config['id'] - requests.post("http://{}:{}/api/unstable/task_error".format( - self.config['broker_host'],self.config['broker_port']), json=message.entry_info['task']) - # Add to history table - task_history = { - "repo_id": message.entry_info['repo_id'], - "worker": self.config['id'], - "job_model": message.entry_info['task']['models'][0], - "oauth_id": self.config['zombie_id'], - "timestamp": datetime.datetime.now(), - "status": "Error", - "total_results": self.results_counter - } - self.helper_db.execute(self.history_table.update().where(self.history_table.c.history_id==self.history_id).values(task_history)) + if message['job_type'] == 'STOP': + break - logging.info("Recorded job error for: " + str(message.entry_info['task']) + "\n") + if message['job_type'] != 'MAINTAIN' and message['job_type'] != 'UPDATE': + raise ValueError('{} is not a recognized task type'.format(message['job_type'])) + pass - # Update job process table - updated_job = { - "since_id_str": message.entry_info['repo_id'], - "last_count": self.results_counter, - "last_run": datetime.datetime.now(), - "analysis_state": 0 - } - self.helper_db.execute(self.job_table.update().where(self.job_table.c.job_model==message.entry_info['task']['models'][0]).values(updated_job)) - logging.info("Updated job process for model: " + message.entry_info['task']['models'][0] + "\n") + """ Query all repos with repo url of given task """ + repoUrlSQL = s.sql.text(""" + SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' + """.format(message['given']['github_url'])) + repo_id = int(pd.read_sql(repoUrlSQL, self.db, params={}).iloc[0]['repo_id']) - # Reset results counter for next task - self.results_counter = 0 - pass + try: + if message['models'][0] == 'contributors': + self.contributor_model(message, repo_id) + if message['models'][0] == 'issues': + self.issues_model(message, repo_id) + except Exception as e: + register_task_failure(self, logging, message, repo_id, e) + pass def insert_commit_contributors(self, entry_info): cntrb = { @@ -335,7 +274,29 @@ def insert_commit_contributors(self, entry_info): # Increment our global track of the cntrb id for the possibility of it being used as a FK self.cntrb_id_inc = int(result.inserted_primary_key[0]) - def contributor_model(self, entry_info): + def insert_facade_contributors(self, entry_info): + logging.info("Beginning process to insert contributors from facade commits for repo w entry info: {}\n".format(entry_info)) + + # Get all distinct combinations of emails and names by querying the repo's commits + userSQL = s.sql.text(""" + SELECT distinct(cmt_author_email) AS email, cmt_author_name AS name, cmt_author_affiliation AS affiliation + FROM commits + WHERE repo_id = {} + AND cmt_author_email NOT IN (SELECT cntrb_email AS e FROM contributors) + UNION + SELECT distinct(cmt_committer_email) AS email, cmt_committer_name AS name, cmt_committer_affiliation AS affiliation + FROM commits + WHERE repo_id = {} + AND cmt_committer_email NOT IN (SELECT cntrb_email AS e FROM contributors) + """.format(repo_id,repo_id)) + + commit_cntrbs = json.loads(pd.read_sql(userSQL, self.db, params={}).to_json(orient="records")) + logging.info("We found {} distinct contributors needing insertion (repo_id = {})".format( + len(commit_cntrbs), repo_id)) + + def contributor_model(self, entry_info, repo_id): + # self.insert_facade_contributors(self, entry_info) + logging.info("Searching users for commits from the facade worker for repo with entry info: {}\n".format(entry_info)) # Get all distinct combinations of emails and names by querying the repo's commits @@ -384,13 +345,11 @@ def contributor_model(self, entry_info): WHERE repo_id = {} AND contributors.cntrb_email = cmt_committer_raw_email ORDER BY cntrb_id - """.format(entry_info['repo_id'],entry_info['repo_id'],entry_info['repo_id'],entry_info['repo_id'])) + """.format(repo_id,repo_id,repo_id,repo_id)) - rs = pd.read_sql(userSQL, self.db, params={}) - commit_cntrbs = rs.to_json(orient="records") - commit_cntrbs = json.loads(commit_cntrbs) + commit_cntrbs = json.loads(pd.read_sql(userSQL, self.db, params={}).to_json(orient="records")) logging.info("We found {} distinct emails to search for in this repo (repo_id = {})".format( - len(commit_cntrbs), entry_info['repo_id'])) + len(commit_cntrbs), repo_id)) # For every unique commit contributor info combination... for tuple in commit_cntrbs: @@ -433,7 +392,7 @@ def search_users(): logging.info("Hitting endpoint: " + url + " ...\n") r = requests.get(url=url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) results = r.json() # If no matches or bad response, continue with other contributors @@ -456,7 +415,7 @@ def search_users(): cntrb_url = ("https://api.github.com/users/" + match['login']) logging.info("Hitting endpoint: " + cntrb_url + " ...\n") r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) contributor = r.json() # Fill in all github information @@ -508,7 +467,7 @@ def search_users(): if len(existing_tuples) < 1: # Prepare tuple for insertion to contributor table (build it off of the tuple queried) cntrb = tuple - cntrb['cntrb_created_at'] = datetime.datetime.fromtimestamp(cntrb['cntrb_created_at']/1000) + cntrb['cntrb_created_at'] = datetime.fromtimestamp(cntrb['cntrb_created_at']/1000) cntrb['cntrb_email'] = tuple['commit_email'] cntrb["tool_source"] = self.tool_source cntrb["tool_version"] = self.tool_version @@ -547,20 +506,19 @@ def search_users(): logging.info("THERE IS A CASE FOR A DUPLICATE CONTRIBUTOR in the alias table AND NEED TO ADD DELETION LOGIC\n") #Register this task as completed - self.register_task_completion(entry_info, "contributors") + register_task_completion(self, logging, entry_info, repo_id, "contributors") - def query_contributors(self, entry_info): + def query_contributors(self, entry_info, repo_id): """ Data collection function Query the GitHub API for contributors """ logging.info("Querying contributors with given entry info: " + str(entry_info) + "\n") - # Url of repo we are querying for - url = entry_info['github_url'] + github_url = entry_info['given']['github_url'] # Extract owner/repo from the url for the endpoint - path = urlparse(url) + path = urlparse(github_url) split = path[2].split('/') owner = split[1] @@ -589,7 +547,7 @@ def query_contributors(self, entry_info): while True: logging.info("Hitting endpoint: " + url.format(i) + " ...\n") r = requests.get(url=url.format(i), headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) # If it lists the last page then there is more than 1 if ('last' in r.links and not multiple_pages) and not self.finishing_task: @@ -646,7 +604,7 @@ def query_contributors(self, entry_info): cntrb_url = ("https://api.github.com/users/" + repo_contributor['login']) logging.info("Hitting endpoint: " + cntrb_url + " ...\n") r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) contributor = r.json() company = None @@ -724,27 +682,28 @@ def query_contributors(self, entry_info): if len(contributors) > 2: logging.info("Well, that contributor list of len {} with last 3 tuples as: {} just don't except because we hit the else-block yo\n".format(str(len(contributors)), str(contributors[-3:]))) - def query_issues(self, entry_info): + def issues_model(self, entry_info, repo_id): """ Data collection function Query the GitHub API for issues """ - logging.info("Beginning filling the issues model for repo: " + entry_info['github_url'] + "\n") - self.record_model_process(entry_info, 'issues') - #if str.find('github.com', str(entry_info['github_url']) < 0 + github_url = entry_info['given']['github_url'] + + logging.info("Beginning filling the issues model for repo: " + github_url + "\n") + record_model_process(self, logging, repo_id, 'issues') + + #if str.find('github.com', str(github_url) < 0 ### I have repos not on github and I need to skip them - #@if str.find('github.com', str(entry_info['github_url']) < 0 + #@if str.find('github.com', str(github_url) < 0 # return # Contributors are part of this model, and finding all for the repo saves us # from having to add them as we discover committers in the issue process - self.query_contributors(entry_info) - - url = entry_info['github_url'] + self.query_contributors(entry_info, repo_id) # Extract the owner/repo for the endpoint - path = urlparse(url) + path = urlparse(github_url) split = path[2].split('/') owner = split[1] name = split[2] @@ -774,7 +733,7 @@ def query_issues(self, entry_info): while True: logging.info("Hitting endpoint: " + url.format(i) + " ...\n") r = requests.get(url=url.format(i), headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) # Find last page so we can decrement from there if 'last' in r.links and not multiple_pages and not self.finishing_task: @@ -793,9 +752,11 @@ def query_issues(self, entry_info): j = self.assign_tuple_action(j, issue_table_values, {'comment_count': 'comments','issue_state': 'state'}, {pseudo_key_augur: pseudo_key_gh}, 'issue_id') - + if not j: + continue to_add = [obj for obj in j if obj not in issues and obj['flag'] != 'none'] if len(to_add) == 0 and multiple_pages and 'last' in r.links: + logging.info("{}".format(r.links['last'])) if i - 1 != int(r.links['last']['url'][-6:].split('=')[1]): logging.info("No more pages with unknown issues, breaking from pagination.\n") break @@ -815,7 +776,7 @@ def query_issues(self, entry_info): logging.info("Begin analyzing the issue with title: " + issue_dict['title'] + "\n") # Add the FK repo_id to the dict being inserted - issue_dict['repo_id'] = entry_info['repo_id'] + issue_dict['repo_id'] = repo_id # Figure out if this issue is a PR # still unsure about this key value pair/what it means @@ -852,7 +813,7 @@ def query_issues(self, entry_info): while True: logging.info("Hitting endpoint: " + events_url.format(i) + " ...\n") r = requests.get(url=events_url.format(i), headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) # Find last page so we can decrement from there if 'last' in r.links and not multiple_pages and not self.finishing_task: @@ -1016,7 +977,7 @@ def query_issues(self, entry_info): while True: logging.info("Hitting endpoint: " + comments_url.format(i) + " ...\n") r = requests.get(url=comments_url.format(i), headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) # Find last page so we can decrement from there if 'last' in r.links and not multiple_pages and not self.finishing_task: @@ -1128,8 +1089,7 @@ def query_issues(self, entry_info): self.issue_id_inc += 1 #Register this task as completed - self.register_task_completion(entry_info, "issues") - + register_task_completion(self, logging.getLogger(), entry_info, repo_id, "issues") def get_table_values(self, cols, tables): table_str = tables[0] @@ -1182,7 +1142,7 @@ def find_id_from_login(self, login): cntrb_url = ("https://api.github.com/users/" + login) logging.info("Hitting endpoint: {} ...\n".format(cntrb_url)) r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) contributor = r.json() company = None @@ -1241,89 +1201,6 @@ def find_id_from_login(self, login): logging.info("Inserted contributor: " + contributor['login'] + "\n") return self.find_id_from_login(login) - - - def update_rate_limit(self, response): - # Try to get rate limit from request headers, sometimes it does not work (GH's issue) - # In that case we just decrement from last recieved header count - try: - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) - logging.info("Recieved rate limit from headers\n") - except: - self.rate_limit -= 1 - logging.info("Headers did not work, had to decrement\n") - logging.info("Updated rate limit, you have: " + - str(self.rate_limit) + " requests remaining.\n") - if self.rate_limit <= 0: - reset_time = response.headers['X-RateLimit-Reset'] - time_diff = datetime.datetime.fromtimestamp(int(reset_time)) - datetime.datetime.now() - logging.info("Rate limit exceeded, waiting " + - str(time_diff.total_seconds()) + " seconds.\n") - time.sleep(time_diff.total_seconds()) - self.rate_limit = int(response.headers['X-RateLimit-Limit']) - - def register_task_completion(self, entry_info, model): - # Task to send back to broker - task_completed = { - 'worker_id': self.config['id'], - 'job_type': self.working_on, - 'repo_id': entry_info['repo_id'], - 'github_url': entry_info['github_url'], - 'job_model': model - } - # Add to history table - task_history = { - "repo_id": entry_info['repo_id'], - "worker": self.config['id'], - "job_model": model, - "oauth_id": self.config['zombie_id'], - "timestamp": datetime.datetime.now(), - "status": "Success", - "total_results": self.results_counter - } - self.helper_db.execute(self.history_table.update().where( - self.history_table.c.history_id==self.history_id).values(task_history)) - - logging.info("Recorded job completion for: " + str(task_completed) + "\n") - - # Update job process table - updated_job = { - "since_id_str": entry_info['repo_id'], - "last_count": self.results_counter, - "last_run": datetime.datetime.now(), - "analysis_state": 0 - } - self.helper_db.execute(self.job_table.update().where( - self.job_table.c.job_model==model).values(updated_job)) - logging.info("Update job process for model: " + model + "\n") - - # Notify broker of completion - logging.info("Telling broker we completed task: " + str(task_completed) + "\n\n" + - "This task inserted: " + str(self.results_counter) + " tuples.\n\n") - - requests.post('http://{}:{}/api/unstable/completed_task'.format( - self.config['broker_host'],self.config['broker_port']), json=task_completed) - - # Reset results counter for next task - self.results_counter = 0 - - def record_model_process(self, entry_info, model): - task_history = { - "repo_id": entry_info['repo_id'], - "worker": self.config['id'], - "job_model": model, - "oauth_id": self.config['zombie_id'], - "timestamp": datetime.datetime.now(), - "status": "Stopped", - "total_results": self.results_counter - } - if self.finishing_task: - result = self.helper_db.execute(self.history_table.update().where( - self.history_table.c.history_id==self.history_id).values(task_history)) - else: - result = self.helper_db.execute(self.history_table.insert().values(task_history)) - logging.info("Record incomplete history tuple: {}".format(result.inserted_primary_key)) - self.history_id = int(result.inserted_primary_key[0]) def check_duplicates(self, new_data, table_values, key): need_insertion = [] From 94fc32a68289de66c27a1403eee1c806961a2cea Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sun, 17 Nov 2019 19:51:48 -0600 Subject: [PATCH 052/250] shared standard helper methods that can be used in all workers --- workers/__init__.py | 0 workers/standard_methods.py | 183 ++++++++++++++++++++++++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 workers/__init__.py create mode 100644 workers/standard_methods.py diff --git a/workers/__init__.py b/workers/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/workers/standard_methods.py b/workers/standard_methods.py new file mode 100644 index 0000000000..b81e25de72 --- /dev/null +++ b/workers/standard_methods.py @@ -0,0 +1,183 @@ +""" Helper methods constant across all workers """ +import requests, datetime, time +import sqlalchemy as s +import pandas as pd + +def connect_to_broker(self, logging): + connected = False + for i in range(5): + try: + logging.info("attempt {}".format(i)) + if i > 0: + time.sleep(10) + requests.post('http://{}:{}/api/unstable/workers'.format( + self.config['broker_host'],self.config['broker_port']), json=self.specs) + logging.info("Connection to the broker was successful") + connected = True + break + except requests.exceptions.ConnectionError: + logging.error('Cannot connect to the broker. Trying again...') + if not connected: + sys.exit('Could not connect to the broker after 5 attempts! Quitting...') + +def record_model_process(self, logging, repo_id, model): + + task_history = { + "repo_id": repo_id, + "worker": self.config['id'], + "job_model": model, + "oauth_id": self.oauths[0]['oauth_id'], + "timestamp": datetime.datetime.now(), + "status": "Stopped", + "total_results": self.results_counter + } + if self.finishing_task: + result = self.helper_db.execute(self.history_table.update().where( + self.history_table.c.history_id==self.history_id).values(task_history)) + else: + result = self.helper_db.execute(self.history_table.insert().values(task_history)) + logging.info("Record incomplete history tuple: {}".format(result.inserted_primary_key)) + self.history_id = int(result.inserted_primary_key[0]) + +def register_task_completion(self, logging, entry_info, repo_id, model): + # Task to send back to broker + task_completed = { + 'worker_id': self.config['id'], + 'job_type': self.working_on, + 'repo_id': repo_id, + 'github_url': entry_info['given']['github_url'], + 'job_model': model + } + # Add to history table + task_history = { + "repo_id": repo_id, + "worker": self.config['id'], + "job_model": model, + "oauth_id": self.oauths[0]['oauth_id'], + "timestamp": datetime.datetime.now(), + "status": "Success", + "total_results": self.results_counter + } + self.helper_db.execute(self.history_table.update().where( + self.history_table.c.history_id==self.history_id).values(task_history)) + + logging.info("Recorded job completion for: " + str(task_completed) + "\n") + + # Update job process table + updated_job = { + "since_id_str": repo_id, + "last_count": self.results_counter, + "last_run": datetime.datetime.now(), + "analysis_state": 0 + } + self.helper_db.execute(self.job_table.update().where( + self.job_table.c.job_model==model).values(updated_job)) + logging.info("Updated job process for model: " + model + "\n") + + # Notify broker of completion + logging.info("Telling broker we completed task: " + str(task_completed) + "\n\n" + + "This task inserted: " + str(self.results_counter) + " tuples.\n\n") + + requests.post('http://{}:{}/api/unstable/completed_task'.format( + self.config['broker_host'],self.config['broker_port']), json=task_completed) + + # Reset results counter for next task + self.results_counter = 0 + +def register_task_failure(self, logging, task, repo_id, e): + + logging.info("Worker ran into an error for task: {}".format(task)) + logging.info("Error encountered: " + repr(e)) + logging.info(f'This task inserted {self.results_counter} tuples before failure.') + logging.info("Notifying broker and logging task failure in database...\n") + + github_url = task['given']['github_url'] + + """ Query all repos with repo url of given task """ + repoUrlSQL = s.sql.text(""" + SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' + """.format(github_url)) + repo_id = int(pd.read_sql(repoUrlSQL, self.db, params={}).iloc[0]['repo_id']) + + task['worker_id'] = self.config['id'] + try: + requests.post("http://{}:{}/api/unstable/task_error".format( + self.config['broker_host'],self.config['broker_port']), json=task) + except requests.exceptions.ConnectionError: + logging.error('Could not send task failure message to the broker') + except Exception: + logging.exception('An error occured while informing broker about task failure') + + # Add to history table + task_history = { + "repo_id": repo_id, + "worker": self.config['id'], + "job_model": task['models'][0], + "oauth_id": self.oauths[0]['oauth_id'], + "timestamp": datetime.datetime.now(), + "status": "Error", + "total_results": self.results_counter + } + self.helper_db.execute(self.history_table.update().where(self.history_table.c.history_id==self.history_id).values(task_history)) + + logging.info("Recorded job error in the history table for: " + str(task) + "\n") + + # Update job process table + updated_job = { + "since_id_str": repo_id, + "last_count": self.results_counter, + "last_run": datetime.datetime.now(), + "analysis_state": 0 + } + self.helper_db.execute(self.job_table.update().where(self.job_table.c.job_model==task['models'][0]).values(updated_job)) + logging.info("Updated job process for model: " + task['models'][0] + "\n") + + # Reset results counter for next task + self.results_counter = 0 + +def update_gh_rate_limit(self, logging, response): + # Try to get rate limit from request headers, sometimes it does not work (GH's issue) + # In that case we just decrement from last recieved header count + try: + self.oauths[0]['rate_limit'] = int(response.headers['X-RateLimit-Remaining']) + logging.info("Recieved rate limit from headers\n") + except: + self.oauths[0]['rate_limit'] -= 1 + logging.info("Headers did not work, had to decrement\n") + logging.info("Updated rate limit, you have: " + + str(self.oauths[0]['rate_limit']) + " requests remaining.\n") + if self.oauths[0]['rate_limit'] <= 0: + reset_time = response.headers['X-RateLimit-Reset'] + time_diff = datetime.datetime.fromtimestamp(int(reset_time)) - datetime.datetime.now() + logging.info("Rate limit exceeded, checking for other available keys to use.\n") + + # We will be finding oauth with the highest rate limit left out of our list of oauths + new_oauth = self.oauths[0] + # Endpoint to hit solely to retrieve rate limit information from headers of the response + url = "https://api.github.com/users/gabe-heim" + + for oauth in self.oauths: + self.headers = {'Authorization': 'token %s' % oauth['access_token']} + response = requests.get(url=url, headers=self.headers) + oauth['rate_limit'] = int(response.headers['X-RateLimit-Remaining']) + oauth['seconds_to_reset'] = (datetime.datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.datetime.now()).total_seconds() + + # Update oauth to switch to if a higher limit is found + if oauth['rate_limit'] > new_oauth['rate_limit']: + logging.info("Higher rate limit found in oauth: {}".format(oauth)) + new_oauth = oauth + elif oauth['rate_limit'] == new_oauth['rate_limit'] and oauth['seconds_to_reset'] < new_oauth['seconds_to_reset']: + logging.info("Lower wait time found in oauth with same rate limit: {}".format(oauth)) + new_oauth = oauth + + if new_oauth['rate_limit'] <= 0: + logging.info("No oauths with >0 rate limit were found, waiting for oauth with smallest wait time: {}".format(new_oauth)) + time.sleep(new_oauth['seconds_to_reset']) + + # Change headers to be using the new oauth's key + self.headers = {'Authorization': 'token %s' % new_oauth['key']} + + # Make new oauth the 0th element in self.oauths so we know which one is in use + index = self.oauths.index('password2') + self.oauths[0], self.oauths[index] = self.oauths[index], self.oauths[0] + logging.info("Using oauth: {}".format(self.oauths[0])) From 5efd9f9ce102d9bcbc2bc27a2bac732e1c7236ff Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sun, 17 Nov 2019 19:52:42 -0600 Subject: [PATCH 053/250] pull_request worker reorganization, capabilities for multiple instances, and shared standard methods implemented --- .../pull_request_worker/runtime.py | 10 +- .../pull_request_worker/worker.py | 324 +++++------------- 2 files changed, 82 insertions(+), 252 deletions(-) diff --git a/workers/pull_request_worker/pull_request_worker/runtime.py b/workers/pull_request_worker/pull_request_worker/runtime.py index a2a5063d92..f8ff36bc3a 100644 --- a/workers/pull_request_worker/pull_request_worker/runtime.py +++ b/workers/pull_request_worker/pull_request_worker/runtime.py @@ -63,6 +63,7 @@ def main(augur_url, host, port): while True: try: + print("Trying port: {}\n".format(worker_port)) r = requests.get("http://{}:{}/AUGWOP/heartbeat".format(server['host'],worker_port)).json() if 'status' in r: if r['status'] == 'alive': @@ -72,14 +73,6 @@ def main(augur_url, host, port): logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) - while True: - try: - r = requests.get("http://{}:{}".format(server['host'],worker_port) + '/AUGWOP/task') - if r.status == 200: - worker_port += 1 - except: - break - config = { "id": "com.augurlabs.core.pull_request_worker.{}".format(worker_port), "broker_port": server['port'], @@ -107,7 +100,6 @@ def main(augur_url, host, port): create_server(app, None) logging.info("Starting Flask App with pid: " + str(os.getpid()) + "...") - app.run(debug=app.debug, host=server['host'], port=worker_port) if app.gh_pr_worker._child is not None: app.gh_pr_worker._child.terminate() diff --git a/workers/pull_request_worker/pull_request_worker/worker.py b/workers/pull_request_worker/pull_request_worker/worker.py index 6038728d90..38474c64ad 100644 --- a/workers/pull_request_worker/pull_request_worker/worker.py +++ b/workers/pull_request_worker/pull_request_worker/worker.py @@ -1,41 +1,12 @@ -import ast -import json -import logging -import os -import sys -import time -import traceback -import datetime +import ast, json, logging, os, sys, time, traceback, requests +from datetime import datetime from multiprocessing import Process, Queue from urllib.parse import urlparse import pandas as pd -import requests import sqlalchemy as s from sqlalchemy import MetaData from sqlalchemy.ext.automap import automap_base - -class CollectorTask: - """ Worker's perception of a task in its queue - Holds a message type (EXIT, TASK, etc) so the worker knows how to process the queue entry - and the github_url given that it will be collecting data for - """ - def __init__(self, message_type='TASK', entry_info=None): - self.type = message_type - self.entry_info = entry_info - - -def dump_queue(queue): - """ - Empties all pending items in a queue and returns them in a list. - - :param queue: The queue to be emptied. - """ - result = [] - queue.put("STOP") - for i in iter(queue.get, 'STOP'): - result.append(i) - # time.sleep(.1) - return result +from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class GHPullRequestWorker: """ @@ -66,11 +37,7 @@ def __init__(self, config, task=None): self.history_id = None self.finishing_task = False - url = "https://api.github.com" - response = requests.get(url=url, headers=self.headers) - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) - - specs = { + self.specs = { "id": self.config['id'], "location": self.config['location'], "qualifications": [ @@ -195,21 +162,39 @@ def __init__(self, config, task=None): self.assignee_id_inc = (assignee_start + 1) self.pr_meta_id_inc = (pr_meta_id_start + 1) - connected = False - for i in range(5): - try: - logging.info("attempt {}".format(i)) - if i > 0: - time.sleep(10) - requests.post('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'],self.config['broker_port']), json=specs) - logging.info("Connection to the broker was successful") - connected = True - break - except requests.exceptions.ConnectionError: - logging.error('Cannot connect to the broker. Trying again...') - if not connected: - sys.exit('Could not connect to the broker after 5 attempts! Quitting...') + # Organize different keys available + self.oauths = [] + self.headers = None + + # Endpoint to hit solely to retrieve rate limit information from headers of the response + url = "https://api.github.com/users/gabe-heim" + + # Make a list of api key in the config combined w keys stored in the database + oauthSQL = s.sql.text(""" + SELECT * FROM worker_oauth WHERE access_token <> '{}' + """.format(config['key'])) + for oauth in [{'oauth_id': 0, 'access_token': config['key']}] + json.loads(pd.read_sql(oauthSQL, self.helper_db, params={}).to_json(orient="records")): + # self.headers = {'Authorization': 'token %s' % oauth['access_token']} + self.headers = {'Authorization': 'token {}'.format(oauth['access_token']), + 'Accept': 'application/vnd.github.vixen-preview+json'} + response = requests.get(url=url, headers=self.headers) + self.oauths.append({ + 'oauth_id': oauth['oauth_id'], + 'key': oauth['access_token'], + 'rate_limit': int(response.headers['X-RateLimit-Remaining']), + 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() + }) + logging.info("Found OAuth available for use: {}".format(self.oauths[-1])) + + if len(self.oauths) == 0: + logging.info("No API keys detected, please include one in your config or in the worker_oauths table in the augur_operations schema of your database\n") + + # First key to be used will be the one specified in the config (first element in + # self.oauths array will always be the key in use) + self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + + # Send broker hello message + connect_to_broker(self, logging.getLogger()) def update_config(self, config): """ Method to update config and set a default @@ -243,10 +228,8 @@ def task(self, value): try: repo_id = int(rs.iloc[0]['repo_id']) - if value['job_type'] == "UPDATE": - self._queue.put(CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id})) - elif value['job_type'] == "MAINTAIN": - self._maintain_queue.put(CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id})) + if value['job_type'] == "UPDATE" or value['job_type'] == "MAINTAIN": + self._queue.put(value) if 'focused_task' in value: if value['focused_task'] == 1: self.finishing_task = True @@ -254,7 +237,7 @@ def task(self, value): except Exception as e: logging.error(f"error: {e}, or that repo is not in our database: {value}") - self._task = CollectorTask(message_type='TASK', entry_info={"task": value, "repo_id": repo_id}) + self._task = value self.run() def cancel(self): @@ -275,85 +258,44 @@ def collect(self): Determines what action to take based off the message type """ while True: - time.sleep(2) - logging.info(f'Maintain Queue Empty: {self._maintain_queue.empty()}') - logging.info(f'Queue Empty: {self._queue.empty()}') if not self._queue.empty(): message = self._queue.get() - logging.info(f"Popped off message from Queue: {message.entry_info}") - self.working_on = "UPDATE" - elif not self._maintain_queue.empty(): - message = self._maintain_queue.get() - logging.info(f"Popped off message from Maintain Queue: {message.entry_info}") - self.working_on = "MAINTAIN" + self.working_on = message['job_type'] else: break + logging.info("Popped off message: {}\n".format(str(message))) - if message.type == 'EXIT': + if message['job_type'] == 'STOP': break - if message.type != 'TASK': - raise ValueError(f'{message.type} is not a recognized task type') - - if message.type == 'TASK': - try: - github_url = message.entry_info['task']['given']['github_url'] - repo_id = message.entry_info['repo_id'] - self.query_pr({'github_url': github_url, 'repo_id': repo_id}) - except Exception: - # logging.error("Worker ran into an error for task: {}\n".format(message.entry_info['task'])) - # logging.error("Error encountered: " + str(e) + "\n") - # # traceback.format_exc() - # logging.info("Notifying broker and logging task failure in database...\n") - - logging.exception(f'Worker ran into an error for task {message.entry_info}') - self.register_task_failure(message.entry_info['repo_id'], - message.entry_info['task']['given']['github_url']) - - # Add to history table - task_history = { - "repo_id": message.entry_info['repo_id'], - "worker": self.config['id'], - "job_model": message.entry_info['task']['models'][0], - "oauth_id": self.config['zombie_id'], - "timestamp": datetime.datetime.now(), - "status": "Error", - "total_results": self.results_counter - } - - if self.history_id: - self.helper_db.execute(self.history_table.update().where(self.history_table.c.history_id==self.history_id).values(task_history)) - else: - r = self.helper_db.execute(self.history_table.insert().values(task_history)) - self.history_id = r.inserted_primary_key[0] - - logging.info(f"Recorded job error for: {message.entry_info['task']}") - - # Update job process table - updated_job = { - "since_id_str": message.entry_info['repo_id'], - "last_count": self.results_counter, - "last_run": datetime.datetime.now(), - "analysis_state": 0 - } - self.helper_db.execute(self.job_table.update().where(self.job_table.c.job_model==message.entry_info['task']['models'][0]).values(updated_job)) - logging.info("Updated job process for model: " + message.entry_info['task']['models'][0] + "\n") - - # Reset results counter for next task - self.results_counter = 0 - pass - - def query_pr(self, entry_info): + if message['job_type'] != 'MAINTAIN' and message['job_type'] != 'UPDATE': + raise ValueError('{} is not a recognized task type'.format(message['job_type'])) + pass + + """ Query all repos with repo url of given task """ + repoUrlSQL = s.sql.text(""" + SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' + """.format(message['given']['github_url'])) + repo_id = int(pd.read_sql(repoUrlSQL, self.db, params={}).iloc[0]['repo_id']) + + try: + if message['models'][0] == 'pull_requests': + self.query_pr(message, repo_id) + except Exception as e: + register_task_failure(self, logging, message, repo_id, e) + pass + + def query_pr(self, entry_info, repo_id): """Pull Request data collection function. Query GitHub API for PhubRs. :param entry_info: A dictionary consisiting of 'git_url' and 'repo_id' :type entry_info: dict """ - github_url = entry_info['github_url'] - repo_id = entry_info['repo_id'] + github_url = entry_info['given']['github_url'] logging.info('Beginning collection of Pull Requests...') logging.info(f'Repo ID: {repo_id}, Git URL: {github_url}') + record_model_process(self, logging, repo_id, 'pull_requests') owner, repo = self.get_owner_repo(github_url) @@ -369,7 +311,7 @@ def query_pr(self, entry_info): try: while True: r = requests.get(url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) j = r.json() @@ -387,9 +329,9 @@ def query_pr(self, entry_info): else: url = r.links['next']['url'] - except Exception: + except Exception as e: logging.exception('Encountered an error while paginating through PRs') - self.register_task_failure(repo_id, github_url) + register_task_failure(self, logging, entry_info, repo_id, e) return for pr_dict in prs: @@ -433,7 +375,7 @@ def query_pr(self, entry_info): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': 'GitHub API', - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_requests_table.insert().values(pr)) @@ -449,7 +391,7 @@ def query_pr(self, entry_info): logging.info(f"Inserted PR data for {owner}/{repo}") self.results_counter += 1 - self.register_task_completion(entry_info, 'pull_requests') + register_task_completion(self, logging, entry_info, repo_id, 'pull_requests') def query_labels(self, labels, pr_id): logging.info('Querying PR Labels') @@ -479,7 +421,7 @@ def query_labels(self, labels, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_labels_table.insert().values(label)) @@ -504,7 +446,7 @@ def query_pr_events(self, owner, repo, gh_pr_no, pr_id): try: while True: r = requests.get(url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) j = r.json() @@ -543,7 +485,7 @@ def query_pr_events(self, owner, repo, gh_pr_no, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_events_table.insert().values(pr_event)) @@ -587,7 +529,7 @@ def query_reviewers(self, reviewers, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_reviewers_table.insert().values(reviewer)) @@ -631,7 +573,7 @@ def query_assignee(self, assignees, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_assignees_table.insert().values(assignee)) @@ -669,7 +611,7 @@ def query_pr_meta(self, head, base, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_meta_table.insert().values(pr_meta)) @@ -696,7 +638,7 @@ def query_pr_meta(self, head, base, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.pull_request_meta_table.insert().values(pr_meta)) @@ -724,7 +666,7 @@ def query_pr_comments(self, owner, repo, gh_pr_no, pr_id): try: while True: r = requests.get(url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) j = r.json() @@ -762,7 +704,7 @@ def query_pr_comments(self, owner, repo, gh_pr_no, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute(self.message_table.insert().values(msg)) @@ -777,7 +719,7 @@ def query_pr_comments(self, owner, repo, gh_pr_no, pr_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute( @@ -831,7 +773,7 @@ def query_contributors(self, entry_info): while True: logging.info("Hitting endpoint: " + url.format(i) + " ...") r = requests.get(url=url.format(i), headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) # If it lists the last page then there is more than 1 if 'last' in r.links and not multiple_pages and not self.finishing_task: @@ -885,7 +827,7 @@ def query_contributors(self, entry_info): cntrb_url = ("https://api.github.com/users/" + repo_contributor['login']) logging.info("Hitting endpoint: " + cntrb_url) r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) contributor = r.json() company = None @@ -992,7 +934,7 @@ def find_id_from_login(self, login): cntrb_url = ("https://api.github.com/users/" + login) logging.info("Hitting endpoint: {} ...".format(cntrb_url)) r = requests.get(url=cntrb_url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) contributor = r.json() company = None @@ -1052,88 +994,6 @@ def find_id_from_login(self, login): return self.find_id_from_login(login) - - def update_rate_limit(self, response): - # Try to get rate limit from request headers, sometimes it does not work (GH's issue) - # In that case we just decrement from last recieved header count - try: - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) - logging.info("[Rate Limit]: Recieved rate limit from headers") - except: - self.rate_limit -= 1 - logging.info("[Rate Limit]: Headers did not work, had to decrement") - logging.info(f"[Rate Limit]: Updated rate limit, you have: {self.rate_limit} requests remaining") - if self.rate_limit <= 0: - reset_time = response.headers['X-RateLimit-Reset'] - time_diff = datetime.datetime.fromtimestamp(int(reset_time)) - datetime.datetime.now() - logging.info(f"[Rate Limit]: Rate limit exceeded, waiting {time_diff.total_seconds()} seconds.") - time.sleep(time_diff.total_seconds()) - self.rate_limit = int(response.headers['X-RateLimit-Limit']) - - def register_task_completion(self, entry_info, model): - # Task to send back to broker - task_completed = { - 'worker_id': self.config['id'], - 'job_type': self.working_on, - 'repo_id': entry_info['repo_id'], - 'github_url': entry_info['github_url'] - } - # # Add to history table - # task_history = { - # "repo_id": entry_info['repo_id'], - # "worker": self.config['id'], - # "job_model": model, - # "oauth_id": self.config['zombie_id'], - # "timestamp": datetime.datetime.now(), - # "status": "Success", - # "total_results": self.results_counter - # } - # self.helper_db.execute(self.history_table.update().where(self.history_table.c.history_id==self.history_id).values(task_history)) - - # logging.info("Recorded job completion for: " + str(task_completed) + "\n") - - # # Update job process table - # updated_job = { - # "since_id_str": entry_info['repo_id'], - # "last_count": self.results_counter, - # "last_run": datetime.datetime.now(), - # "analysis_state": 0 - # } - # self.helper_db.execute(self.job_table.update().where(self.job_table.c.job_model==model).values(updated_job)) - # logging.info("Update job process for model: " + model + "\n") - - # Notify broker of completion - logging.info(f"Telling broker we completed task: {task_completed}") - logging.info(f"This task inserted {self.results_counter} tuples\n") - - try: - requests.post('http://{}:{}/api/unstable/completed_task'.format( - self.config['broker_host'],self.config['broker_port']), json=task_completed) - except requests.exceptions.ConnectionError: - logging.info("Broker is booting and cannot accept the worker's message currently") - except Exception: - logging.exception('An unknown error occured while informing broker about task failure') - - # Reset results counter for next task - self.results_counter = 0 - - def record_model_process(self, entry_info, model): - task_history = { - "repo_id": entry_info['repo_id'], - "worker": self.config['id'], - "job_model": model, - "oauth_id": self.config['zombie_id'], - "timestamp": datetime.datetime.now(), - "status": "Stopped", - "total_results": self.results_counter - } - if self.finishing_task: - result = self.helper_db.execute(self.history_table.update().where(self.history_table.c.history_id==self.history_id).values(task_history)) - else: - result = self.helper_db.execute(self.history_table.insert().values(task_history)) - logging.info("Record incomplete history tuple: " + str(result.inserted_primary_key)) - self.history_id = int(result.inserted_primary_key[0]) - def check_duplicates(self, new_data, table_values, key): need_insertion = [] for obj in new_data: @@ -1144,25 +1004,3 @@ def check_duplicates(self, new_data, table_values, key): need_insertion.append(obj) logging.info("[Filtering] Page recieved has {} tuples, while filtering duplicates this was reduced to {} tuples.".format(str(len(new_data)), str(len(need_insertion)))) return need_insertion - - def register_task_failure(self, repo_id, github_url): - task_failed = { - 'worker_id': self.config['id'], - 'job_type': self.working_on, - 'repo_id': repo_id, - 'github_url': github_url - } - - logging.error('Task failed') - logging.error('Informing broker about Task Failure') - logging.info(f'This task inserted {self.results_counter} tuples\n') - - try: - requests.post('http://{}:{}/api/unstable/task_error'.format( - self.config['broker_host'],self.config['broker_port']), json=task_failed) - except requests.exceptions.ConnectionError: - logging.error('Could not send task failure message to the broker') - except Exception: - logging.exception('An unknown error occured while informing broker about task failure') - - self.results_counter = 0 From 5b41af3dd60c87b1cdea70700a9ec4ad683f41b9 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sun, 17 Nov 2019 19:53:37 -0600 Subject: [PATCH 054/250] repo info worker reorganization, capabilities for multiple instances, and shared standard methods implemented --- .../repo_info_worker/worker.py | 285 +++++++----------- 1 file changed, 106 insertions(+), 179 deletions(-) diff --git a/workers/repo_info_worker/repo_info_worker/worker.py b/workers/repo_info_worker/repo_info_worker/worker.py index 5fe3a10376..6422c4c2b1 100644 --- a/workers/repo_info_worker/repo_info_worker/worker.py +++ b/workers/repo_info_worker/repo_info_worker/worker.py @@ -1,41 +1,18 @@ -import logging -import os -import sys -import time +import logging, os, sys, time, requests, json from datetime import datetime from multiprocessing import Process, Queue from urllib.parse import urlparse import pandas as pd -import requests import sqlalchemy as s from sqlalchemy import MetaData from sqlalchemy.ext.automap import automap_base - -class CollectorTask: - """ Worker's perception of a task in its queue - Holds a message type (EXIT, TASK, etc) so the worker knows how to process the queue entry - and the github_url given that it will be collecting data for - """ - def __init__(self, message_type='TASK', entry_info=None): - self.type = message_type - self.entry_info = entry_info - -def dump_queue(queue): - """ - Empties all pending items in a queue and returns them in a list. - """ - result = [] - queue.put("STOP") - for i in iter(queue.get, 'STOP'): - result.append(i) - return result +from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class GHRepoInfoWorker: def __init__(self, config, task=None): self._task = task self._child = None self._queue = Queue() - self._maintain_queue = Queue() self.working_on = None self.config = config LOG_FORMAT = '%(levelname)s:[%(name)s]: %(message)s' @@ -49,14 +26,10 @@ def __init__(self, config, task=None): self.tool_version = '0.0.1' self.data_source = 'GitHub API' self.results_counter = 0 - self.headers = {'Authorization': f'token {self.API_KEY}', - 'Accept': 'application/vnd.github.vixen-preview+json'} - - url = 'https://api.github.com' - response = requests.get(url, headers=self.headers) - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) + self.finishing_task = False + self.info_id_inc = None - specs = { + self.specs = { "id": self.config['id'], "location": self.config['location'], "qualifications": [ @@ -86,39 +59,52 @@ def __init__(self, config, task=None): helper_metadata = MetaData() metadata.reflect(self.db, only=['repo_info']) - helper_metadata.reflect(self.helper_db) + helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job', 'worker_oauth']) Base = automap_base(metadata=metadata) + HelperBase = automap_base(metadata=helper_metadata) Base.prepare() + HelperBase.prepare() self.repo_info_table = Base.classes.repo_info.__table__ - logging.info('Getting max repo_info_id...') - max_repo_info_id_sql = s.sql.text(""" - select nextval('repo_info_repo_info_id_seq'::regclass) as repo_info_id - """) - rs = pd.read_sql(max_repo_info_id_sql, self.db) + self.history_table = HelperBase.classes.worker_history.__table__ + self.job_table = HelperBase.classes.worker_job.__table__ - repo_info_start_id = int(rs.iloc[0]['repo_info_id']) + # Organize different keys available + self.oauths = [] + self.headers = None - self.info_id_inc = repo_info_start_id + # Endpoint to hit solely to retrieve rate limit information from headers of the response + url = "https://api.github.com/users/gabe-heim" - connected = False - for i in range(5): - try: - logging.info("attempt {}".format(i)) - if i > 0: - time.sleep(10) - requests.post('http://{}:{}/api/unstable/workers'.format( - self.config['broker_host'],self.config['broker_port']), json=specs) - logging.info("Connection to the broker was successful") - connected = True - break - except requests.exceptions.ConnectionError: - logging.error('Cannot connect to the broker. Trying again...') - if not connected: - sys.exit('Could not connect to the broker after 5 attempts! Quitting...') + # Make a list of api key in the config combined w keys stored in the database + oauthSQL = s.sql.text(""" + SELECT * FROM worker_oauth WHERE access_token <> '{}' + """.format(config['key'])) + for oauth in [{'oauth_id': 0, 'access_token': config['key']}] + json.loads(pd.read_sql(oauthSQL, self.helper_db, params={}).to_json(orient="records")): + # self.headers = {'Authorization': 'token %s' % oauth['access_token']} + self.headers = {'Authorization': 'token {}'.format(oauth['access_token']), + 'Accept': 'application/vnd.github.vixen-preview+json'} + response = requests.get(url=url, headers=self.headers) + self.oauths.append({ + 'oauth_id': oauth['oauth_id'], + 'key': oauth['access_token'], + 'rate_limit': int(response.headers['X-RateLimit-Remaining']), + 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() + }) + logging.info("Found OAuth available for use: {}".format(self.oauths[-1])) + + if len(self.oauths) == 0: + logging.info("No API keys detected, please include one in your config or in the worker_oauths table in the augur_operations schema of your database\n") + + # First key to be used will be the one specified in the config (first element in + # self.oauths array will always be the key in use) + self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + + # Send broker hello message + connect_to_broker(self, logging.getLogger()) @property def task(self): @@ -127,31 +113,25 @@ def task(self): @task.setter def task(self, value): - github_url = value['given']['github_url'] - - repo_url_SQL = s.sql.text(""" - SELECT min(repo_id) AS repo_id - FROM repo - WHERE repo_git = :repo_git - """) - - rs = pd.read_sql(repo_url_SQL, self.db, params={'repo_git': github_url}) - - try: - repo_id = int(rs.iloc[0]['repo_id']) - if value['job_type'] == 'UPDATE': - self._queue.put(CollectorTask('TASK', {"github_url": github_url, "repo_id": repo_id})) - elif value['job_type'] == 'MAINTAIN': - self._maintain_queue.put(CollectorTask('TASK', {"github_url": github_url, "repo_id": repo_id})) - - if 'focused_task' in value: - if value['focused_task'] == 1: - self.finishing_task = True - - except Exception as e: - logging.error(f"Error: {e}, or that repo is not in our database: {value}") - - self._task = CollectorTask('TASK', {"github_url": github_url, "repo_id": repo_id}) + """ entry point for the broker to add a task to the queue + Adds this task to the queue, and calls method to process queue + """ + + if value['job_type'] == "UPDATE" or value['job_type'] == "MAINTAIN": + self._queue.put(value) + + if 'focused_task' in value: + if value['focused_task'] == 1: + logging.info("Focused task is ON\n") + self.finishing_task = True + else: + self.finishing_task = False + logging.info("Focused task is OFF\n") + else: + self.finishing_task = False + logging.info("focused task is OFF\n") + + self._task = value self.run() def cancel(self): @@ -166,31 +146,30 @@ def run(self): def collect(self, repos=None): while True: - time.sleep(4.5) if not self._queue.empty(): message = self._queue.get() - self.working_on = 'UPDATE' - elif not self._maintain_queue.empty(): - message = self._maintain_queue.get() - logging.info(f"Popped off message: {message.entry_info}") - self.working_on = "MAINTAIN" + self.working_on = message['job_type'] else: break + logging.info("Popped off message: {}\n".format(str(message))) - if message.type == 'EXIT': + if message['job_type'] == 'STOP': break - if message.type != 'TASK': - raise ValueError(f'{message.type} is not a recognized task type') + if message['job_type'] != 'MAINTAIN' and message['job_type'] != 'UPDATE': + raise ValueError('{} is not a recognized task type'.format(message['job_type'])) + pass + + """ Query all repos with repo url of given task """ + repoUrlSQL = s.sql.text(""" + SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' + """.format(message['given']['github_url'])) + repo_id = int(pd.read_sql(repoUrlSQL, self.db, params={}).iloc[0]['repo_id']) - if message.type == 'TASK': - try: - self.query_repo_info(message.entry_info['repo_id'], - message.entry_info['github_url']) - except Exception: - logging.exception(f'Worker ran into an error for task {message.entry_info}') - self.register_task_failure(message.entry_info['repo_id'], - message.entry_info['github_url']) + try: + self.repo_info_model(message, repo_id) + except Exception: + raise ValueError('Worker ran into an error for task {}'.format(message)) def get_owner_repo(self, github_url): split = github_url.split('/') @@ -203,11 +182,17 @@ def get_owner_repo(self, github_url): return owner, repo - def query_repo_info(self, repo_id, github_url): - url = 'https://api.github.com/graphql' + def repo_info_model(self, task, repo_id): + + github_url = task['given']['github_url'] + + logging.info("Beginning filling the repo_info model for repo: " + github_url + "\n") + record_model_process(self, logging, repo_id, 'repo_info') owner, repo = self.get_owner_repo(github_url) + url = 'https://api.github.com/graphql' + query = """ { repository(owner:"%s", name:"%s"){ @@ -270,42 +255,37 @@ def query_repo_info(self, repo_id, github_url): logging.info(f'Hitting endpoint {url}') try: r = requests.post(url, json={'query': query}, headers=self.headers) - self.update_rate_limit(r) - + update_gh_rate_limit(self, logging, r) j = r.json() if 'errors' in j: - logging.error(f"[GitHub API]: {j['errors'][0]['type']}: {j['errors'][0]['message']}") - self.register_task_failure(repo_id, github_url) + register_task_failure(self, logging, task, repo_id, ValueError(f"[GitHub API]: {j['errors'][0]['type']}: {j['errors'][0]['message']}")) return j = j['data']['repository'] - except requests.exceptions.ConnectionError: - logging.error('Could not connect to api.github.com') + except requests.exceptions.ConnectionError as e: + register_task_failure(self, logging, task, repo_id, e) + return except Exception as e: - logging.exception(f'Caught Exception: {e}') + register_task_failure(self, logging, task, repo_id, e) + return committers_count = self.query_committers_count(owner, repo) # commit_count = self.query_commit_count(owner, repo) logging.info(f'Inserting repo info for repo with id:{repo_id}, owner:{owner}, name:{repo}') - - repo_info_id_sql = s.sql.text(""" - select nextval('repo_info_repo_info_id_seq'::regclass) as repo_info_id - """) - rsid = pd.read_sql(repo_info_id_sql, self.db) - - self.info_id_inc = int(rsid.iloc[0]['repo_info_id']) - + # logging.info("1 {}\n\n\n".format(j)) + # logging.info("2 {}\n\n\n".format(j['ref'])) + # logging.info("3 {}\n\n\n".format(j['ref']['target'])) + # logging.info("4 {}\n\n\n".format(j['ref']['target']['history'])) rep_inf = { - 'repo_info_id': self.info_id_inc, 'repo_id': repo_id, - 'last_updated': j['updatedAt'], - 'issues_enabled': j['hasIssuesEnabled'], + 'last_updated': j['updatedAt'] if 'updatedAt' in j else None, + 'issues_enabled': j['hasIssuesEnabled'] if 'hasIssuesEnabled' in j else None, 'open_issues': j['issues']['totalCount'] if j['issues'] else None, 'pull_requests_enabled': None, - 'wiki_enabled': j['hasWikiEnabled'], + 'wiki_enabled': j['hasWikiEnabled'] if 'hasWikiEnabled' in j else None, 'pages_enabled': None, - 'fork_count': j['forkCount'], + 'fork_count': j['forkCount'] if 'forkCount' in j else None, 'default_branch': j['defaultBranchRef']['name'] if j['defaultBranchRef'] else None, 'watchers_count': j['watchers']['totalCount'] if j['watchers'] else None, 'UUID': None, @@ -321,7 +301,7 @@ def query_repo_info(self, repo_id, github_url): 'security_audit_file': None, 'status': None, 'keywords': None, - 'commit_count': j['ref']['target']['history']['totalCount'], + 'commit_count': j['ref']['target']['history']['totalCount'] if j['ref'] else None, 'issues_count': j['issue_count']['totalCount'] if j['issue_count'] else None, 'issues_closed': j['issues_closed']['totalCount'] if j['issues_closed'] else None, 'pull_request_count': j['pr_count']['totalCount'] if j['pr_count'] else None, @@ -340,9 +320,8 @@ def query_repo_info(self, repo_id, github_url): logging.info(f"Inserted info for {owner}/{repo}") - self.info_id_inc += 1 - - self.register_task_completion(repo_id, github_url) + #Register this task as completed + register_task_completion(self, logging.getLogger(), task, repo_id, "repo_info") def query_committers_count(self, owner, repo): logging.info('Querying committers count') @@ -352,7 +331,7 @@ def query_committers_count(self, owner, repo): try: while True: r = requests.get(url, headers=self.headers) - self.update_rate_limit(r) + update_gh_rate_limit(self, logging, r) committers += len(r.json()) if 'next' not in r.links: @@ -368,14 +347,14 @@ def query_committers_count(self, owner, repo): # logging.info('Querying commit count') # commits_url = f'https://api.github.com/repos/{owner}/{repo}/commits' # r = requests.get(commits_url, headers=self.headers) - # self.update_rate_limit(r) + # update_gh_rate_limit(self, logging, r) # first_commit_sha = None # last_commit_sha = r.json()[0]['sha'] # if 'last' in r.links: # r = requests.get(r.links['last']['url'], headers=self.headers) - # self.update_rate_limit(r) + # update_gh_rate_limit(self, logging, r) # first_commit_sha = r.json()[-1]['sha'] @@ -385,59 +364,7 @@ def query_committers_count(self, owner, repo): # compare_url = (f'https://api.github.com/repos/{owner}/{repo}/' # + f'compare/{first_commit_sha}...{last_commit_sha}') # r = requests.get(compare_url, headers=self.headers) - # self.update_rate_limit(r) + # update_gh_rate_limit(self, logging, r) # return r.json()['total_commits'] + 1 - def update_rate_limit(self, response): - try: - self.rate_limit = int(response.headers['X-RateLimit-Remaining']) - logging.info("[Rate Limit]: Recieved rate limit from headers") - except: - self.rate_limit -= 1 - logging.info("[Rate Limit]: Headers did not work, had to decrement") - logging.info(f"[Rate Limit]: Updated rate limit, you have: {self.rate_limit} requests remaining") - if self.rate_limit <= 0: - reset_time = response.headers['X-RateLimit-Reset'] - time_diff = datetime.fromtimestamp(int(reset_time)) - datetime.now() - logging.info(f"[Rate Limit]: Rate limit exceeded, waiting {time_diff.total_seconds()} seconds") - time.sleep(time_diff.total_seconds()) - self.rate_limit = int(response.headers['X-RateLimit-Limit']) - - def register_task_completion(self, repo_id, github_url): - task_completed = { - 'worker_id': self.config['id'], - 'job_type': self.working_on, - 'repo_id': repo_id, - 'github_url': github_url - } - - logging.info(f"Telling broker we completed task: {task_completed}") - logging.info(f"This task inserted {self.results_counter} tuples\n") - - try: - requests.post('http://{}:{}/api/unstable/completed_task'.format( - self.config['broker_host'],self.config['broker_port']), json=task_completed) - except requests.exceptions.ConnectionError: - logging.info("Broker is booting and cannot accept the worker's message currently") - self.results_counter = 0 - - def register_task_failure(self, repo_id, github_url): - task_failed = { - 'worker_id': self.config['id'], - 'job_type': self.working_on, - 'repo_id': repo_id, - 'github_url': github_url - } - - logging.error('Task failed') - logging.error('Informing broker about Task Failure') - logging.info(f'This task inserted {self.results_counter} tuples\n') - - try: - requests.post('http://{}:{}/api/unstable/task_error'.format( - self.config['broker_host'],self.config['broker_port']), json=task_failed) - except requests.exceptions.ConnectionError: - logging.error('Could not send task failure message to the broker') - except Exception: - logging.exception('An error occured while informing broker about task failure') From 5fd51e258c8d8adde7a45e9454ca12f83290fbca Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 07:36:48 -0600 Subject: [PATCH 055/250] Repo Badging Schema Update. --- util/scripts/install/schema_update.sql | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index 4d8c854406..2c5565d1de 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -49,6 +49,44 @@ CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( "repo_git" ); +-- Repo Badging Table Update. + +drop table repo_badging; + +CREATE TABLE augur_data.repo_badging +( + badge_collection_id bigint NOT NULL DEFAULT nextval('augur_data.repo_badging_badge_collection_id_seq'::regclass), + repo_id bigint, + data jsonb, + created_at timestamp(0) without time zone DEFAULT CURRENT_TIMESTAMP, + tool_source character varying(255) COLLATE pg_catalog."default", + tool_version character varying(255) COLLATE pg_catalog."default", + data_source character varying(255) COLLATE pg_catalog."default", + data_collection_date timestamp(0) without time zone DEFAULT CURRENT_TIMESTAMP +) +WITH ( + OIDS = FALSE +) +TABLESPACE pg_default; + +ALTER TABLE "augur_data"."repo_badging" OWNER TO "augur"; + +-- ---------------------------- +-- Primary Key structure for table repo_badging +-- ---------------------------- +ALTER TABLE "augur_data"."repo_badging" ADD CONSTRAINT "repo_badging_pkey" PRIMARY KEY ("badge_collection_id"); + +-- ---------------------------- +-- Foreign Keys structure for table repo_badging +-- ---------------------------- +ALTER TABLE "augur_data"."repo_badging" ADD CONSTRAINT "fk_repo_badging_repo_1" FOREIGN KEY ("repo_id") REFERENCES "augur_data"."repo" ("repo_id") ON DELETE NO ACTION ON UPDATE NO ACTION; + +GRANT ALL ON TABLE augur_data.repo_badging TO augur; + +COMMENT ON TABLE augur_data.repo_badging + IS 'This will be collected from the LF’s Badging API +https://bestpractices.coreinfrastructure.org/projects.json?pq=https%3A%2F%2Fgithub.com%2Fchaoss%2Faugur +'; From 0a5d357fffb5d2ebda1dc819828861e5d6511d9c Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 07:53:33 -0600 Subject: [PATCH 056/250] Schema Update Script Update. --- util/scripts/install/schema_update.sql | 609 +++++++++++++++++++++++-- 1 file changed, 573 insertions(+), 36 deletions(-) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index 2c5565d1de..ec8345a4c6 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -51,42 +51,579 @@ CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( -- Repo Badging Table Update. -drop table repo_badging; - -CREATE TABLE augur_data.repo_badging -( - badge_collection_id bigint NOT NULL DEFAULT nextval('augur_data.repo_badging_badge_collection_id_seq'::regclass), - repo_id bigint, - data jsonb, - created_at timestamp(0) without time zone DEFAULT CURRENT_TIMESTAMP, - tool_source character varying(255) COLLATE pg_catalog."default", - tool_version character varying(255) COLLATE pg_catalog."default", - data_source character varying(255) COLLATE pg_catalog."default", - data_collection_date timestamp(0) without time zone DEFAULT CURRENT_TIMESTAMP -) -WITH ( - OIDS = FALSE -) -TABLESPACE pg_default; - -ALTER TABLE "augur_data"."repo_badging" OWNER TO "augur"; - --- ---------------------------- --- Primary Key structure for table repo_badging --- ---------------------------- -ALTER TABLE "augur_data"."repo_badging" ADD CONSTRAINT "repo_badging_pkey" PRIMARY KEY ("badge_collection_id"); - --- ---------------------------- --- Foreign Keys structure for table repo_badging --- ---------------------------- -ALTER TABLE "augur_data"."repo_badging" ADD CONSTRAINT "fk_repo_badging_repo_1" FOREIGN KEY ("repo_id") REFERENCES "augur_data"."repo" ("repo_id") ON DELETE NO ACTION ON UPDATE NO ACTION; - -GRANT ALL ON TABLE augur_data.repo_badging TO augur; - -COMMENT ON TABLE augur_data.repo_badging - IS 'This will be collected from the LF’s Badging API -https://bestpractices.coreinfrastructure.org/projects.json?pq=https%3A%2F%2Fgithub.com%2Fchaoss%2Faugur -'; +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "id"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "user_id"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "name"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_url"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "general_comments"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updated_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "cpe"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_0"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieved_passing_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lost_passing_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "last_reminder_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "disabled_reminders"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implementation_languages"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lock_version"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_1"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_2"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tiered_percentage"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_level"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "additional_rights"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_license"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_attribution"; + +ALTER TABLE "augur_data"."repo_badging" ADD COLUMN "data" jsonb; + +ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" TYPE timestamp(0) USING "created_at"::timestamp(0); + +ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" SET DEFAULT CURRENT_TIMESTAMP; From e7070ea285a5654e4d57d6a32234322b2e4b69af Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 08:46:53 -0600 Subject: [PATCH 057/250] schema update update. --- util/scripts/install/schema_update.sql | 72 +++++++++++++++++++++++++- 1 file changed, 71 insertions(+), 1 deletion(-) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index ec8345a4c6..c178436bb6 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -1,3 +1,68 @@ +/*** +Database update script. For release 8. + +***/ + + +------------------------------------------------- +-- Database history table. If the tables does not exist, then create it and populate it and run all this stuff. +-- This works for everything we already have deployed. After that, we will need the script to check the version in the table. +-- This release is version 8 of the schema. +------------------------------------------------- +CREATE TABLE "augur_operations"."augur_settings" ( +"id" serial8 NOT NULL, +"setting" varchar, +"value" varchar, +"last_modified" timestamp(0) DEFAULT CURRENT_DATE, +PRIMARY KEY ("id") +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."augur_settings" OWNER TO "augur"; + + +INSERT INTO "augur_operations"."augur_settings"("id", "setting", "value", "last_modified") VALUES (1, 'augur_data_version', '8', '2019-11-18 08:41:51'); + +------------------------------------------------- + +------------------------------------------------- + + + + +-- New operations tables + +CREATE TABLE "augur_operations"."worker_settings_facade" ( +"id" int4 NOT NULL, +"setting" varchar(32) COLLATE "default" NOT NULL, +"value" varchar COLLATE "default" NOT NULL, +"last_modified" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP, +CONSTRAINT "settings_pkey" PRIMARY KEY ("id") +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."worker_settings_facade" OWNER TO "augur"; + +CREATE TABLE "augur_operations"."repos_fetch_log" ( +"repos_id" int4 NOT NULL, +"status" varchar(128) COLLATE "default" NOT NULL, +"date" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP +) +WITHOUT OIDS; +CREATE INDEX "repos_id,status" ON "repos_fetch_log" USING btree ("repos_id" "pg_catalog"."int4_ops" ASC NULLS LAST, "status" "pg_catalog"."text_ops" ASC NULLS LAST); +ALTER TABLE "augur_operations"."repos_fetch_log" OWNER TO "augur"; + +CREATE TABLE "augur_operations"."working_commits" ( +"repos_id" int4 NOT NULL, +"working_commit" varchar(40) COLLATE "default" DEFAULT 'NULL'::character varying +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."working_commits" OWNER TO "augur"; + +insert into "augur_operations"."worker_settings_facade" select * from "augur_data"."settings"; + + + + +-- Contributor Alias Updates ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; CREATE SEQUENCE "spdx"."projects_package_id_seq" @@ -7,6 +72,8 @@ MAXVALUE 2147483647 START 1 CACHE 1; +-- SPDX Updates + ALTER TABLE "spdx"."files" DROP CONSTRAINT "files_project_id_fkey"; ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; @@ -21,13 +88,14 @@ ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); -SELECT setval('"spdx"."projects_package_id_seq"', 1, false); +SELECT setval('"spdx"."projects_package_id_seq"', 1000000, false); ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNED BY "spdx"."projects"."package_id"; ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; + -- Index Update for Performance CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( "repo_name" @@ -49,6 +117,8 @@ CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( "repo_git" ); + + -- Repo Badging Table Update. ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "id"; From 6741ab12ee60e1dc3c03720a6ffad9870bbc5d03 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 09:03:48 -0600 Subject: [PATCH 058/250] Worker Full Test Dataset --- .../test_data/chaoss_metric_status.txt | 80 +++++++++++++++++++ persistence_schema/test_data/repo.txt | 5 ++ persistence_schema/test_data/repo_groups.txt | 2 + 3 files changed, 87 insertions(+) create mode 100644 persistence_schema/test_data/chaoss_metric_status.txt create mode 100644 persistence_schema/test_data/repo.txt create mode 100644 persistence_schema/test_data/repo_groups.txt diff --git a/persistence_schema/test_data/chaoss_metric_status.txt b/persistence_schema/test_data/chaoss_metric_status.txt new file mode 100644 index 0000000000..2b956b5a5d --- /dev/null +++ b/persistence_schema/test_data/chaoss_metric_status.txt @@ -0,0 +1,80 @@ +2 growth-maturity-decline githubapi timeseries implemented unimplemented t /api/unstable///timeseries/githubapi/issues \N Open Issues growth-maturity-decline "open-issues" Insight Worker 0.0.1 githubapi 2019-06-20 22:41:41 \N +3 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/issues \N Open Issues growth-maturity-decline "open-issues" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:42:15 \N +4 growth-maturity-decline githubapi timeseries implemented unimplemented t /api/unstable///timeseries/githubapi/issues/closed \N Closed Issues growth-maturity-decline "closed-issues" Insight Worker 0.0.1 githubapi 2019-06-20 22:45:53 \N +5 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/issues/closed \N Closed Issues growth-maturity-decline "closed-issues" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:26 \N +6 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/issues/response_time \N First Response To Issue Duration growth-maturity-decline "first-response-to-issue-duration" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:27 \N +7 growth-maturity-decline githubapi timeseries implemented unimplemented t /api/unstable///timeseries/githubapi/commits \N Code Commits growth-maturity-decline "code-commits" Insight Worker 0.0.1 githubapi 2019-06-20 22:49:29 \N +8 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/commits \N Code Commits growth-maturity-decline "code-commits" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:30 \N +9 growth-maturity-decline githubapi metric implemented unimplemented t /api/unstable///lines_changed \N Lines Of Code Changed growth-maturity-decline "lines-of-code-changed" Insight Worker 0.0.1 githubapi 2019-06-20 22:49:32 \N +10 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/pulls/maintainer_response_time \N Maintainer Response To Merge Request Duration growth-maturity-decline "maintainer-response-to-merge-request-duration" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:33 \N +11 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/code_review_iteration \N Code Review Iteration growth-maturity-decline "code-review-iteration" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:35 \N +12 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/forks \N Forks growth-maturity-decline "forks" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:36 \N +13 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/pulls \N Pull Requests Open growth-maturity-decline "pull-requests-open" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:38 \N +14 growth-maturity-decline ghtorrent timeseries implemented unimplemented f /api/unstable///timeseries/pulls/closed \N Pull Requests Closed growth-maturity-decline "pull-requests-closed" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:39 \N +15 growth-maturity-decline ghtorrent timeseries implemented unimplemented f /api/unstable///timeseries/pulls/response_time \N Pull Request Comment Duration growth-maturity-decline "pull-request-comment-duration" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:41 \N +16 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/pulls/comments \N Pull Request Comments growth-maturity-decline "pull-request-comments" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:42 \N +17 growth-maturity-decline augur_db metric implemented unimplemented t /api/unstable/repo-groups//repos//contributors \N Contributors growth-maturity-decline "contributors" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:44 \N +18 growth-maturity-decline githubapi metric implemented unimplemented t /api/unstable///githubapi/contributors \N Contributors growth-maturity-decline "contributors" Insight Worker 0.0.1 githubapi 2019-06-20 22:49:45 \N +19 growth-maturity-decline ghtorrent metric implemented implemented t /api/unstable///contributors \N Contributors growth-maturity-decline "contributors" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:47 \N +20 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/community_engagement \N Community Engagement growth-maturity-decline "community-engagement" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:48 \N +21 growth-maturity-decline augur_db metric implemented unimplemented t /api/unstable/repo-groups//repos//sub-projects \N Sub Projects growth-maturity-decline "sub-projects" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:50 \N +22 growth-maturity-decline ghtorrent timeseries implemented implemented t /api/unstable///timeseries/contribution_acceptance \N Contribution Acceptance growth-maturity-decline "contribution-acceptance" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:49:51 \N +23 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//code-changes \N Code Changes experimental "code-changes" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:53 \N +24 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//pull-requests-merge-contributor-new \N Pull Requests Merge Contributor New experimental "pull-requests-merge-contributor-new" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:55 \N +25 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-first-time-opened \N Issues First Time Opened experimental "issues-first-time-opened" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:56 \N +26 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-first-time-closed \N Issues First Time Closed experimental "issues-first-time-closed" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:58 \N +27 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//contributors-new \N Contributors New experimental "contributors-new" Insight Worker 0.0.1 augur_db 2019-06-20 22:49:59 \N +28 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//code-changes-lines \N Code Changes Lines experimental "code-changes-lines" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:01 \N +29 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-new \N Issues New experimental "issues-new" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:02 \N +30 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-closed \N Issues Closed experimental "issues-closed" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:04 \N +31 experimental augur_db metric implemented unimplemented f none \N Issue Duration experimental "issue-duration" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:05 \N +32 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issue-backlog \N Issue Backlog experimental "issue-backlog" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:07 \N +33 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-open-age \N Issues Open Age experimental "issues-open-age" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:08 \N +34 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//issues-closed-resolution-duration \N Issues Closed Resolution Duration experimental "issues-closed-resolution-duration" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:10 \N +35 experimental augur_db metric implemented unimplemented f none \N Lines Changed By Author experimental "lines-changed-by-author" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:11 \N +36 experimental augur_db git implemented unimplemented f /api/unstable/repo-groups \N Repo Groups experimental "repo-groups" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:13 \N +37 experimental augur_db git implemented unimplemented f /api/unstable/repos \N Downloaded Repos experimental "downloaded-repos" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:15 \N +38 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//open-issues-count \N Open Issues Count experimental "closed-issues-count" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:16 \N +39 experimental augur_db metric implemented unimplemented f /api/unstable/repo-groups//repos//closed-issues-count \N Closed Issues Count experimental "closed-issues-count" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:18 \N +40 experimental augur_db git implemented unimplemented f /api/unstable/repos// \N Get Repo experimental "get-repo" Insight Worker 0.0.1 augur_db 2019-06-20 22:50:19 \N +41 experimental downloads timeseries implemented implemented f /api/unstable///timeseries/downloads \N Downloads experimental "downloads" Insight Worker 0.0.1 downloads 2019-06-20 22:50:21 \N +42 experimental githubapi metric implemented unimplemented f /api/unstable///githubapi/pull_requests_closed \N Pull Requests Closed experimental "pull_requests_closed" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:22 \N +43 experimental githubapi metric implemented unimplemented f /api/unstable///githubapi/pull_requests_merged \N Pull Requests Merged experimental "pull_requests_merged" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:24 \N +44 experimental githubapi metric implemented unimplemented f /api/unstable///githubapi/pull_requests_open \N Pull Requests Open experimental "pull_requests_open" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:25 \N +45 experimental githubapi metric implemented unimplemented t /api/unstable///githubapi/repository_size \N Repository Size experimental "repository-size" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:27 \N +46 experimental githubapi metric implemented implemented t /api/unstable///bus_factor \N Bus Factor experimental "bus-factor" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:28 \N +47 experimental githubapi timeseries implemented implemented f /api/unstable///timeseries/tags/major \N Major Tags experimental "major-tags" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:30 \N +48 experimental githubapi timeseries implemented implemented f /api/unstable///timeseries/tags \N Tags experimental "tags" Insight Worker 0.0.1 githubapi 2019-06-20 22:50:31 \N +49 experimental facade git implemented unimplemented f /api/unstable/git/repos \N Downloaded Repos experimental "downloaded-repos" Insight Worker 0.0.1 facade 2019-06-20 22:50:33 \N +50 experimental facade git implemented implemented f /api/unstable/git/changes_by_author \N Lines Changed By Author experimental "lines-changed-by-author" Insight Worker 0.0.1 facade 2019-06-20 22:50:35 \N +51 experimental facade git implemented unimplemented f /api/unstable/git/lines_changed_by_week \N Lines Changed By Week experimental "lines-changed-by-week" Insight Worker 0.0.1 facade 2019-06-20 22:50:36 \N +52 experimental facade git implemented unimplemented f /api/unstable/git/lines_changed_by_month \N Lines Changed By Month experimental "lines-changed-by-month" Insight Worker 0.0.1 facade 2019-06-20 22:50:38 \N +53 experimental facade git implemented unimplemented f /api/unstable/git/commits_by_week \N Commits By Week experimental "commits-by-week" Insight Worker 0.0.1 facade 2019-06-20 22:50:40 \N +54 experimental facade git implemented implemented f /api/unstable/git/facade_project \N Facade Project experimental "facade-project" Insight Worker 0.0.1 facade 2019-06-20 22:50:41 \N +55 experimental facade metric implemented unimplemented f none \N Annual Commit Count Ranked By New Repo In Repo Group experimental "annual-commit-count-ranked-by-new-repo-in-repo-group" Insight Worker 0.0.1 facade 2019-06-20 22:50:43 \N +56 experimental facade metric implemented unimplemented f none \N Annual Lines Of Code Count Ranked By New Repo In Repo Group experimental "annual-lines-of-code-count-ranked-by-new-repo-in-repo-group" Insight Worker 0.0.1 facade 2019-06-20 22:50:44 \N +57 experimental facade metric implemented unimplemented f none \N Annual Commit Count Ranked By Repo In Repo Group experimental "annual-commit-count-ranked-by-repo-in-repo-group" Insight Worker 0.0.1 facade 2019-06-20 22:50:46 \N +58 experimental facade metric implemented unimplemented f none \N Annual Lines Of Code Count Ranked By Repo In Repo Group experimental "annual-lines-of-code-count-ranked-by-repo-in-repo-group" Insight Worker 0.0.1 facade 2019-06-20 22:50:48 \N +59 experimental facade metric implemented unimplemented f none \N Lines Of Code Commit Counts By Calendar Year Grouped experimental "lines-of-code-commit-counts-by-calendar-year-grouped" Insight Worker 0.0.1 facade 2019-06-20 22:50:49 \N +60 experimental facade metric implemented unimplemented f none \N Unaffiliated Contributors Lines Of Code Commit Counts By Calendar Year Grouped experimental "unaffiliated-contributors-lines-of-code-commit-counts-by-calendar-year-grouped" Insight Worker 0.0.1 facade 2019-06-20 22:50:51 \N +61 experimental facade metric implemented unimplemented f none \N Repo Group Lines Of Code Commit Counts Calendar Year Grouped experimental "repo-group-lines-of-code-commit-counts-calendar-year-grouped" Insight Worker 0.0.1 facade 2019-06-20 22:50:52 \N +62 experimental ghtorrent metric implemented implemented f /api/unstable///contributing_github_organizations \N Contributing Github Organizations experimental "contributing-github-organizations" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:50:54 \N +63 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/new_contributing_github_organizations \N New Contributing Github Organizations experimental "new-contributing-github-organizations" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:50:56 \N +64 experimental ghtorrent timeseries implemented implemented t /api/unstable///timeseries/issue_comments \N Issue Comments experimental "issue-comments" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:50:57 \N +65 experimental ghtorrent timeseries implemented implemented t /api/unstable///timeseries/pulls/made_closed \N Pull Requests Made Closed experimental "pull-requests-made-closed" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:50:59 \N +66 experimental ghtorrent timeseries implemented implemented t /api/unstable///timeseries/watchers \N Watchers experimental "watchers" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:00 \N +67 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/commits100 \N Commits100 experimental "commits100" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:02 \N +68 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/commits/comments \N Commit Comments experimental "commit-comments" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:03 \N +69 experimental ghtorrent metric implemented implemented f /api/unstable///committer_locations \N Committer Locations experimental "committer-locations" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:05 \N +70 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/total_committers \N Total Committers experimental "total-committers" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:07 \N +71 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/issues/activity \N Issue Activity experimental "issue-activity" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:08 \N +72 experimental ghtorrent timeseries implemented unimplemented f /api/unstable///timeseries/pulls/acceptance_rate \N Pull Request Acceptance Rate experimental "pull-request-acceptance-rate" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:10 \N +73 experimental ghtorrent metric implemented implemented f /api/unstable///community_age \N Community Age experimental "community-age" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:11 \N +74 experimental ghtorrent metric implemented unimplemented f /api/unstable///timeseries/contributions \N Contributions experimental "contributions" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:13 \N +75 experimental ghtorrent metric implemented implemented f /api/unstable///project_age \N Project Age experimental "project-age" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:14 \N +76 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/fakes \N Fakes experimental "fakes" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:16 \N +77 experimental ghtorrent timeseries implemented unimplemented f /api/unstable///timeseries/total_watchers \N Total Watchers experimental "total-watchers" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:18 \N +78 experimental ghtorrent timeseries implemented implemented f /api/unstable///timeseries/new_watchers \N New Watchers experimental "new-watchers" Insight Worker 0.0.1 ghtorrent 2019-06-20 22:51:19 \N +79 experimental librariesio metric implemented implemented f /api/unstable///dependencies \N Dependencies experimental "dependencies" Insight Worker 0.0.1 librariesio 2019-06-20 22:51:21 \N +80 experimental librariesio metric implemented implemented f /api/unstable///dependency_stats \N Dependency Stats experimental "dependency-stats" Insight Worker 0.0.1 librariesio 2019-06-20 22:51:23 \N +81 experimental librariesio metric implemented implemented f /api/unstable///dependents \N Dependents experimental "dependents" Insight Worker 0.0.1 librariesio 2019-06-20 22:51:25 \N diff --git a/persistence_schema/test_data/repo.txt b/persistence_schema/test_data/repo.txt new file mode 100644 index 0000000000..5d2be159af --- /dev/null +++ b/persistence_schema/test_data/repo.txt @@ -0,0 +1,5 @@ +25431 20 https://github.com/chaoss/grimoirelab.git github.com/chaoss/ grimoirelab 2019-10-19 16:03:01 Complete \N \N \N \N \N \N \N CLI 1.0 Git 2019-10-19 16:03:01 +25432 20 https://github.com/chaoss/wg-evolution.git github.com/chaoss/ wg-evolution 2019-10-19 16:03:01 Complete \N \N \N \N \N \N \N CLI 1.0 Git 2019-10-19 16:03:01 +25433 20 https://github.com/chaoss/wg-risk.git github.com/chaoss/ wg-risk 2019-10-19 16:03:01 Complete \N \N \N \N \N \N \N CLI 1.0 Git 2019-10-19 16:03:01 +25434 20 https://github.com/chaoss/wg-common.git github.com/chaoss/ wg-common 2019-10-19 16:03:01 Complete \N \N \N \N \N \N \N CLI 1.0 Git 2019-10-19 16:03:01 +25430 10 https://github.com/chaoss/augur.git github.com/chaoss/ augur 2019-10-19 16:03:01 Complete \N \N \N \N \N \N \N CLI 1.0 Git 2019-10-19 16:03:01 diff --git a/persistence_schema/test_data/repo_groups.txt b/persistence_schema/test_data/repo_groups.txt new file mode 100644 index 0000000000..5da927257c --- /dev/null +++ b/persistence_schema/test_data/repo_groups.txt @@ -0,0 +1,2 @@ +10 "Sample Database Repo Group One" 0 2019-10-19 16:02:23 Unknown Loaded by user 1.0 Git 2019-10-19 16:02:23 +20 "Sample Database Repo Group Two" 0 2019-10-19 16:02:23 Unknown Loaded by user 1.0 Git 2019-10-19 16:02:23 From e00870938282b01e66e3002ffbd8d804b84a79cc Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 09:10:10 -0600 Subject: [PATCH 059/250] test data load for schema. --- persistence_schema/db_worker_test_load.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 persistence_schema/db_worker_test_load.sh diff --git a/persistence_schema/db_worker_test_load.sh b/persistence_schema/db_worker_test_load.sh new file mode 100644 index 0000000000..487ac0fab0 --- /dev/null +++ b/persistence_schema/db_worker_test_load.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +host=$1 +database=$2 +db_user=$3 +port=$4 + +psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_groups from 'persistence_schema/test_data/repo_groups.txt'" +psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo from 'persistence_schema/test_data/repo.txt'" + From cb4239ac713f5ffb0677cc73170aa10e6658359f Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 09:25:35 -0600 Subject: [PATCH 060/250] Debugged update schema script on a fresh install. --- util/scripts/install/schema_update.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index c178436bb6..4685eacb17 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -47,7 +47,7 @@ CREATE TABLE "augur_operations"."repos_fetch_log" ( "date" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ) WITHOUT OIDS; -CREATE INDEX "repos_id,status" ON "repos_fetch_log" USING btree ("repos_id" "pg_catalog"."int4_ops" ASC NULLS LAST, "status" "pg_catalog"."text_ops" ASC NULLS LAST); +CREATE INDEX "repos_id,statusops" ON "repos_fetch_log" USING btree ("repos_id" "pg_catalog"."int4_ops" ASC NULLS LAST, "status" "pg_catalog"."text_ops" ASC NULLS LAST); ALTER TABLE "augur_operations"."repos_fetch_log" OWNER TO "augur"; CREATE TABLE "augur_operations"."working_commits" ( From ebdc8a7e79c9bbc31d34a3c7284d3c422dec1c02 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 18 Nov 2019 09:38:00 -0600 Subject: [PATCH 061/250] drafting special release notes for next dev to master push. --- release_notes.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 release_notes.md diff --git a/release_notes.md b/release_notes.md new file mode 100644 index 0000000000..f435f5f3e0 --- /dev/null +++ b/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +## Next Dev to Master Push +1. Schema update script +2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. \ No newline at end of file From 80e91a514efbb2fedc92cd1a46e1f6f2f25d5eb1 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 10:29:42 -0600 Subject: [PATCH 062/250] repo labor data for loading. --- persistence_schema/data/repo_labor.txt | 16363 +++++++++++++++++++++++ 1 file changed, 16363 insertions(+) diff --git a/persistence_schema/data/repo_labor.txt b/persistence_schema/data/repo_labor.txt index e69de29bb2..6bb91532bf 100644 --- a/persistence_schema/data/repo_labor.txt +++ b/persistence_schema/data/repo_labor.txt @@ -0,0 +1,16363 @@ +25152 25430 2019-10-31 14:05:37 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25153 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25154 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25155 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25156 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25157 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25158 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25159 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25160 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25161 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25162 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25163 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25164 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25165 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25166 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25167 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25168 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25169 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25170 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25171 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25172 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25173 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25174 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25175 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25176 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25177 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25178 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25179 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25180 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25181 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25182 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25183 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25184 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25185 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25186 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25187 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25188 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25189 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25190 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25191 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25192 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25193 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25194 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25195 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25196 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25197 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25198 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25199 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25200 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25201 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25202 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25203 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25204 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25205 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25206 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25207 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25208 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25209 25430 2019-10-31 14:05:37 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25210 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25211 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25212 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25213 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25214 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25215 25430 2019-10-31 14:05:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25216 25430 2019-10-31 14:05:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:37 +25217 25430 2019-10-31 14:05:38 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25218 25430 2019-10-31 14:05:38 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25219 25430 2019-10-31 14:05:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25220 25430 2019-10-31 14:05:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25221 25430 2019-10-31 14:05:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25222 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25223 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25224 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25225 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25226 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25227 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25228 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25229 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25230 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25231 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25232 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25233 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25234 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25235 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25236 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25237 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25238 25430 2019-10-31 14:05:38 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25239 25430 2019-10-31 14:05:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25240 25430 2019-10-31 14:05:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25241 25430 2019-10-31 14:05:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25242 25430 2019-10-31 14:05:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25243 25430 2019-10-31 14:05:38 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25244 25430 2019-10-31 14:05:38 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25245 25430 2019-10-31 14:05:38 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25246 25430 2019-10-31 14:05:38 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25247 25430 2019-10-31 14:05:38 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25248 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25249 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25250 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25251 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25252 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25253 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25254 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25255 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/README.md README.md 39 27 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25256 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25257 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25258 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25259 25430 2019-10-31 14:05:38 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25260 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25261 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25262 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25263 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25264 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25265 25430 2019-10-31 14:05:38 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25266 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25267 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25268 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25269 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25270 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25271 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25272 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25273 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25274 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25275 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25276 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25277 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25278 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25279 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25280 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25281 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25282 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25283 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25284 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25285 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25286 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25287 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25288 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25289 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25290 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25291 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25292 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25293 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25294 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25295 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25296 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25297 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25298 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25299 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25300 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25301 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/sbom_populate.py sbom_populate.py 128 110 5 13 16 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25302 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25303 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25304 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25305 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25306 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25307 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25308 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25309 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25310 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25311 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25312 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25313 25430 2019-10-31 14:05:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-10-31 14:05:38 +25314 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25315 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25316 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25317 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25318 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25319 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25320 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25321 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25322 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25323 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25324 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25325 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25326 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25327 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25328 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25329 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25330 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25331 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25332 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25333 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25334 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25335 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25336 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25337 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25338 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25339 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25340 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25341 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25342 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25343 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25344 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25345 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25346 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25347 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25348 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25349 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25350 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25351 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25352 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25353 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +29640 25434 2019-11-14 10:18:16 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +25354 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25355 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25356 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25357 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25358 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25359 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25360 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25361 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25362 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25363 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25364 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25365 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25366 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25367 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25368 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25369 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25370 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25371 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25372 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25373 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25374 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25375 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25376 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25377 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25378 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25379 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25380 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25381 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25382 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25383 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25384 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25385 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25386 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25387 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25388 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25389 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25390 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25391 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25392 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25393 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25394 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25395 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25396 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25397 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25398 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25399 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25400 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25401 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25402 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25403 25430 2019-10-31 14:05:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25404 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25405 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25406 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25407 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25408 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25409 25430 2019-10-31 14:05:39 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:39 +25410 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25411 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25412 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25413 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25414 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25415 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25416 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25417 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25418 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25419 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25420 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25421 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25422 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25423 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25424 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25425 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25426 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25427 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25428 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25429 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25430 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25431 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25432 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25433 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25434 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25435 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25436 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25437 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25438 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25439 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25440 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25441 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25442 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25443 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25444 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25445 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25446 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25447 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25448 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25449 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25450 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25451 25430 2019-10-31 14:05:40 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25452 25430 2019-10-31 14:05:40 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25453 25430 2019-10-31 14:05:40 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25454 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25455 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25456 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25457 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25458 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25459 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25460 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25461 25430 2019-10-31 14:05:40 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25462 25430 2019-10-31 14:05:40 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25463 25430 2019-10-31 14:05:40 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25464 25430 2019-10-31 14:05:40 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25465 25430 2019-10-31 14:05:40 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25466 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25467 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25468 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/augur_sbom_config.json augur_sbom_config.json 9 9 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25469 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25470 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25471 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25472 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25473 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 43 43 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25474 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25475 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25476 25430 2019-10-31 14:05:40 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25477 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25478 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25479 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25480 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25481 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25482 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25483 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25484 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 31 9 4 8 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25485 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25486 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25487 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 58 40 7 11 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25488 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25489 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25490 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25491 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25492 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25493 25430 2019-10-31 14:05:40 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25494 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25495 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25496 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25497 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25498 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25499 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25500 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25501 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25502 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25503 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25504 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25505 25430 2019-10-31 14:05:40 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-10-31 14:05:40 +25506 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25507 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25508 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25509 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25510 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25511 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25512 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25513 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25514 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25515 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 463 384 29 50 42 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25516 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25517 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25518 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25519 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25520 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25521 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25522 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25523 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25524 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25525 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25526 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25527 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25528 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25529 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25530 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25531 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25532 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25533 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25534 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25535 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25536 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25537 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25538 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25539 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25540 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25541 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25542 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25543 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25544 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25545 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25546 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25547 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25548 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25549 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25550 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25551 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25552 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25553 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25554 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25555 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25556 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25557 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25558 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25559 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25560 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25561 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25562 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25563 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25564 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25565 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25566 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25567 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25568 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25569 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25570 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 64 55 0 9 1 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25571 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25572 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25573 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25574 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25575 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25576 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25577 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25578 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25579 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 106 93 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25580 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25581 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25582 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25583 25430 2019-10-31 14:05:41 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 359 342 0 17 27 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25584 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25585 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25586 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25587 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25588 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25589 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25590 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25591 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +30076 25430 2019-11-14 10:18:21 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +25592 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25593 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25594 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25595 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25596 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25597 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25598 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25599 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25600 25430 2019-10-31 14:05:41 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:41 +25601 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25602 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25603 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25604 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25605 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25606 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25607 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25608 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25609 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25610 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25611 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25612 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25613 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25614 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25615 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25616 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25617 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25618 25430 2019-10-31 14:05:42 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25619 25430 2019-10-31 14:05:42 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25620 25430 2019-10-31 14:05:42 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25621 25430 2019-10-31 14:05:42 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25622 25430 2019-10-31 14:05:42 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25623 25433 2019-10-31 14:05:42 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25624 25433 2019-10-31 14:05:42 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25625 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25626 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25627 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25628 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25629 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25630 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25631 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25632 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25633 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 56 44 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25634 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25635 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25636 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25637 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25638 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25639 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25640 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25641 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25642 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25643 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25644 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25645 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25646 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25647 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25648 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25649 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25650 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25651 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25652 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25653 25433 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25654 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 86 57 0 29 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25655 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 9 7 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25656 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25657 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25658 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/geography/README.md README.md 9 6 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25659 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25660 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/WG-Diversity-Inclusion-Template.md WG-Diversity-Inclusion-Template.md 52 29 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25661 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25662 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/common-template.md common-template.md 49 30 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25663 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/README.md README.md 17 14 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25664 25434 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25665 25434 2019-10-31 14:05:42 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25666 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25667 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 129 103 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25668 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25669 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25670 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25671 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25672 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25673 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25674 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25675 25431 2019-10-31 14:05:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25676 25431 2019-10-31 14:05:42 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25677 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25678 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25679 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25680 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25681 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25682 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25683 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25684 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25685 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25686 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25687 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25688 25431 2019-10-31 14:05:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25689 25431 2019-10-31 14:05:42 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25690 25431 2019-10-31 14:05:42 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25691 25431 2019-10-31 14:05:42 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25692 25431 2019-10-31 14:05:42 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25693 25431 2019-10-31 14:05:42 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:42 +25694 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25695 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25696 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25697 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25698 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25699 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25700 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25701 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25702 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25703 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25704 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25705 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25706 25431 2019-10-31 14:05:43 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25707 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25708 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25709 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25710 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25711 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25712 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25713 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25714 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25715 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25716 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25717 25431 2019-10-31 14:05:43 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25718 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25719 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25720 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25721 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25722 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25723 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25724 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25725 25431 2019-10-31 14:05:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25726 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25727 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25728 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25729 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25730 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25731 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25732 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25733 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25734 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25735 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25736 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25737 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25738 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25739 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25740 25431 2019-10-31 14:05:43 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25741 25431 2019-10-31 14:05:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25742 25431 2019-10-31 14:05:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25743 25431 2019-10-31 14:05:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25744 25431 2019-10-31 14:05:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25745 25431 2019-10-31 14:05:43 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25746 25431 2019-10-31 14:05:43 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25747 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25748 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25749 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25750 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25751 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25752 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25753 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25754 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25755 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25756 25431 2019-10-31 14:05:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25757 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25758 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25759 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25760 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25761 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25762 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25763 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25764 25431 2019-10-31 14:05:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25765 25431 2019-10-31 14:05:43 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25766 25431 2019-10-31 14:05:43 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25767 25431 2019-10-31 14:05:43 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25768 25431 2019-10-31 14:05:43 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25769 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25770 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25771 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25772 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25773 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25774 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25775 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25776 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25777 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25778 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25779 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25780 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25781 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25782 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25783 25431 2019-10-31 14:05:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25784 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25785 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25786 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25787 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25788 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25789 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25790 25431 2019-10-31 14:05:43 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25791 25431 2019-10-31 14:05:43 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:43 +25792 25431 2019-10-31 14:05:44 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25793 25431 2019-10-31 14:05:44 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25794 25431 2019-10-31 14:05:44 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25795 25431 2019-10-31 14:05:44 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25796 25431 2019-10-31 14:05:44 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25797 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25798 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25799 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25800 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25801 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25802 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25803 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +30145 25433 2019-11-14 10:18:22 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +25804 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25805 25432 2019-10-31 14:05:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25806 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25807 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25808 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 149 95 0 54 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25809 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1451 1058 0 393 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25810 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25811 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25812 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25813 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25814 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-merged.md pull-requests-merged.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25815 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25816 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-code-reviews-initiated-contributors-new.md pull-requests-code-reviews-initiated-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25817 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25818 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-new.md pull-requests-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25819 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25820 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25821 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A_template.md A_template.md 17 9 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25822 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A-example-template.md A-example-template.md 43 30 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25823 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25824 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25825 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25826 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25827 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 105 77 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25828 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25829 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 115 78 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25830 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25831 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25832 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25833 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25834 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-contributor-new.md pull-requests-merge-contributor-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25835 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25836 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25837 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/mailing-lists-messages-contributors-new.md mailing-lists-messages-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25838 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25839 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25840 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 92 58 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25841 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25842 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25843 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-efficiency.md pull-requests-code-reviews-efficiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25844 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 80 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25845 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-opened.md issues-first-time-opened.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25846 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25847 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-iteration.md pull-requests-code-reviews-iteration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25848 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25849 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25850 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 144 113 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25851 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25852 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 119 82 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25853 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25854 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors-new.md contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25855 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-request-code-reviews-new.md pull-request-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25856 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25857 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 106 83 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25858 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25859 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 97 71 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25860 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comment-duration.md pull-requests-comment-duration.md 50 42 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25861 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-efficiency.md issues-closed-resolution-efficiency.md 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25862 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25863 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25864 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 130 95 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25865 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations.md organizations.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25866 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-closed.md issues-first-time-closed.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25867 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25868 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25869 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25870 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25871 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25872 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25873 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25874 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25875 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25876 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25877 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25878 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25879 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25880 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25881 25432 2019-10-31 14:05:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:44 +25882 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25883 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25884 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25885 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25886 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25887 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25888 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25889 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25890 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25891 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25892 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25893 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25894 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25895 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25896 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25897 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25898 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25899 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25900 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25901 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25902 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25903 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25904 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25905 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25906 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25907 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-maintainer-response-duration.md pull-requests-maintainer-response-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25908 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25909 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25910 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25911 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25912 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25913 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25914 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25915 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25916 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25917 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25918 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25919 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25920 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25921 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25922 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25923 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25924 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25925 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25926 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25927 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25928 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25929 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25930 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25931 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25932 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25933 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25934 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25935 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25936 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25937 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25938 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25939 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25940 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25941 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25942 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25943 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25944 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25945 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25946 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25947 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25948 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25949 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25950 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25951 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25952 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25953 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25954 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25955 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25956 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25957 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25958 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25959 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25960 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25961 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25962 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25963 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25964 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25965 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25966 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25967 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25968 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25969 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25970 25432 2019-10-31 14:05:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25971 25432 2019-10-31 14:05:45 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25972 25432 2019-10-31 14:05:45 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25973 25432 2019-10-31 14:05:45 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25974 25432 2019-10-31 14:05:45 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25975 25432 2019-10-31 14:05:45 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25976 25432 2019-10-31 14:05:45 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25977 25432 2019-10-31 14:05:45 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-10-31 14:05:45 +25978 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25979 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25980 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25981 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25982 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25983 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25984 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25985 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25986 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25987 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25988 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25989 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25990 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25991 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25992 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25993 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25994 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25995 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25996 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25997 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25998 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +25999 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26000 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26001 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26002 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26003 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26004 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26005 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26006 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26007 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26008 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26009 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26010 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26011 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26012 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26013 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26014 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26015 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26016 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26017 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26018 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26019 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26020 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26021 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26022 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26023 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26024 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26154 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26025 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26026 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26027 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26028 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26029 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26030 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26031 25432 2019-10-31 14:05:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26032 25432 2019-10-31 14:05:46 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26033 25432 2019-10-31 14:05:46 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26034 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26035 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26036 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26037 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26038 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26039 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26040 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26041 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26042 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26043 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26044 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26045 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26046 25432 2019-10-31 14:05:46 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26047 25430 2019-10-31 14:05:46 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26048 25430 2019-10-31 14:05:46 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26049 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26050 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26051 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26052 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26053 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26054 25430 2019-10-31 14:05:46 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26055 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26056 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26057 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26058 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26059 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26060 25430 2019-10-31 14:05:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:46 +26061 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26062 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26063 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26064 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26065 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26066 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26067 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26068 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26069 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26070 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26071 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26072 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26073 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26074 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26075 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26076 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26077 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26078 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26079 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26080 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26081 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26082 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26083 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26084 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26085 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26086 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26087 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26088 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26089 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26090 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26091 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26092 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26093 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26094 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26095 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26096 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26097 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26098 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26099 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26100 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26101 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26102 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26103 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26104 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26105 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26106 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26107 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26108 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26109 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26110 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26111 25430 2019-10-31 14:05:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26112 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26113 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26114 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26115 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26116 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26117 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26118 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26119 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26120 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26121 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26122 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26123 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26124 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26125 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26126 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26127 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26128 25430 2019-10-31 14:05:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26129 25430 2019-10-31 14:05:47 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26130 25430 2019-10-31 14:05:47 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26131 25430 2019-10-31 14:05:47 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26132 25430 2019-10-31 14:05:47 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26133 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26134 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26135 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26136 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26137 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26138 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26139 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26140 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26141 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26142 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26143 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26144 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26145 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26146 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26147 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26148 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26149 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26150 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26151 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26152 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26153 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26155 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26156 25430 2019-10-31 14:05:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-10-31 14:05:47 +26157 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26158 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26159 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 463 384 29 50 42 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26160 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26161 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26162 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26163 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26164 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26165 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26166 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26167 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26168 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26169 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26170 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26171 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26172 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26173 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26174 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26175 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26176 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26177 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26178 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26179 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26180 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26181 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26182 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26183 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26184 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26185 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26186 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26187 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26188 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26189 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26190 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26191 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26192 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26193 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26194 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26195 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26196 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26197 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26198 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26199 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26200 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26201 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26202 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26203 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26204 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26205 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26206 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26207 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 64 55 0 9 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26208 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26209 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26210 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26211 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26212 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26213 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26214 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26215 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26216 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26217 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26218 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26219 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26220 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 106 93 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26221 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26222 25430 2019-10-31 14:05:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 359 342 0 17 27 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26223 25430 2019-10-31 14:05:48 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26224 25430 2019-10-31 14:05:48 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26225 25430 2019-10-31 14:05:48 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26226 25430 2019-10-31 14:05:48 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26227 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26228 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26229 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26230 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26231 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26232 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26233 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26234 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26235 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26236 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26237 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26238 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26239 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26240 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26241 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26242 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26243 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26244 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26245 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26246 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26247 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26248 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26249 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26250 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26251 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26252 25430 2019-10-31 14:05:48 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:48 +26253 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26254 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26255 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26256 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26257 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +27442 25433 2019-10-31 14:06:01 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +26258 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26259 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26260 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26261 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26262 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/sbom_populate.py sbom_populate.py 128 110 5 13 16 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26263 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26264 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26265 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26266 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26267 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26268 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26269 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26270 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26271 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26272 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26273 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26274 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26275 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26276 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26277 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26278 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26279 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26280 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26281 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26282 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26283 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26284 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26285 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26286 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26287 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26288 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26289 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26290 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26291 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26292 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26293 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26294 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26295 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26296 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26297 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26298 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26299 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26300 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26301 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26302 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26303 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26304 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26305 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26306 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26307 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26308 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26309 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26310 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26311 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26312 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26313 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26314 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26315 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26316 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26317 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26318 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26319 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26320 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26321 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26322 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26323 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26324 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26325 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26326 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26327 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26328 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26329 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26330 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26331 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26332 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26333 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26334 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26335 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26336 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26337 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26338 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26339 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26340 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26341 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26342 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26343 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26344 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26345 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26346 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26347 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26348 25430 2019-10-31 14:05:49 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-10-31 14:05:49 +26349 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26350 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26351 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26352 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26353 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26354 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26355 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26356 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26357 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26358 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26359 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26360 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26361 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26362 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26363 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26364 25430 2019-10-31 14:05:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26365 25430 2019-10-31 14:05:50 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26366 25430 2019-10-31 14:05:50 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26367 25430 2019-10-31 14:05:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26368 25430 2019-10-31 14:05:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26369 25430 2019-10-31 14:05:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26370 25430 2019-10-31 14:05:50 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26371 25430 2019-10-31 14:05:50 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26372 25430 2019-10-31 14:05:50 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26373 25430 2019-10-31 14:05:50 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26374 25430 2019-10-31 14:05:50 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26375 25430 2019-10-31 14:05:50 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26376 25430 2019-10-31 14:05:50 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26377 25430 2019-10-31 14:05:50 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26378 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26379 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26380 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26381 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26382 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26383 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26384 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26385 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26386 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26387 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26388 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26389 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26390 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26391 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26392 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26393 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26394 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26395 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26396 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26397 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26398 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26399 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26400 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26401 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26402 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26403 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26404 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26405 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26406 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26407 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26408 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26409 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26410 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26411 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26412 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26413 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26414 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26415 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26416 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26417 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26418 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26419 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26420 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26421 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26422 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26423 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26424 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26425 25430 2019-10-31 14:05:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26426 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26427 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26428 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26429 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26430 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26431 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 58 40 7 11 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26432 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26433 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26434 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26435 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26436 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26437 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26438 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26439 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26440 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 31 9 4 8 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26441 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26442 25430 2019-10-31 14:05:50 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26443 25430 2019-10-31 14:05:50 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:50 +26444 25430 2019-10-31 14:05:51 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26445 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26446 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26447 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26448 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26449 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/README.md README.md 39 27 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26450 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26451 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26452 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26453 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26454 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26455 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26456 25430 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26457 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26458 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26459 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26460 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26461 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26462 25430 2019-10-31 14:05:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26463 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26464 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26465 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26466 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26467 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/augur_sbom_config.json augur_sbom_config.json 9 9 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26468 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26469 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26470 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 43 43 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26471 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26472 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26473 25430 2019-10-31 14:05:51 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26474 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26475 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26476 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26477 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26478 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26479 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26480 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26481 25430 2019-10-31 14:05:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26482 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26483 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26484 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26485 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26486 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26487 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26488 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26489 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26490 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26491 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26492 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26493 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26494 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26495 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26496 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26497 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26498 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26499 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26500 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26501 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26502 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26503 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26504 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26505 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26506 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26507 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26508 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26509 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26510 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26511 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26512 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26513 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26514 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26515 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26516 25430 2019-10-31 14:05:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26517 25430 2019-10-31 14:05:51 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26518 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26519 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26520 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26521 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26522 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26523 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26524 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26525 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26526 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26527 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26528 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26529 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26530 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26531 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26532 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26533 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26534 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 56 44 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26535 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26536 25433 2019-10-31 14:05:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:51 +26537 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26538 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26539 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26540 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26541 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26542 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26543 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26544 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26545 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26546 25433 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26547 25433 2019-10-31 14:05:52 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26548 25433 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26549 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26550 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26551 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26552 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26553 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26554 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26555 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26556 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26557 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26558 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26559 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26560 25431 2019-10-31 14:05:52 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26561 25431 2019-10-31 14:05:52 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26562 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26563 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26564 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26565 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26566 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26567 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26568 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26569 25431 2019-10-31 14:05:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +30552 25433 2019-11-14 10:18:27 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +26570 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26571 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26572 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26573 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26574 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26575 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26576 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26577 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26578 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26579 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26580 25431 2019-10-31 14:05:52 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26581 25431 2019-10-31 14:05:52 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26582 25431 2019-10-31 14:05:52 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26583 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26584 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 129 103 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26585 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26586 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26587 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26588 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26589 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26590 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26591 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26592 25431 2019-10-31 14:05:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26593 25431 2019-10-31 14:05:52 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26594 25431 2019-10-31 14:05:52 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26595 25431 2019-10-31 14:05:52 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26596 25431 2019-10-31 14:05:52 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26597 25431 2019-10-31 14:05:52 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26598 25431 2019-10-31 14:05:52 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26599 25431 2019-10-31 14:05:52 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26600 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26601 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26602 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26603 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26604 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26605 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26606 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26607 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26608 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26609 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26610 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26611 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26612 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26613 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26614 25431 2019-10-31 14:05:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26615 25431 2019-10-31 14:05:52 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26616 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26617 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26618 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26619 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26620 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26621 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26622 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26623 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26624 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26625 25431 2019-10-31 14:05:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26626 25431 2019-10-31 14:05:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26627 25431 2019-10-31 14:05:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26628 25431 2019-10-31 14:05:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:52 +26629 25431 2019-10-31 14:05:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26630 25431 2019-10-31 14:05:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26631 25431 2019-10-31 14:05:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26632 25431 2019-10-31 14:05:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26633 25431 2019-10-31 14:05:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26634 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26635 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26636 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26637 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26638 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26639 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26640 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26641 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26642 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26643 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26644 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26645 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26646 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26647 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26648 25431 2019-10-31 14:05:53 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26649 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26650 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26651 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26652 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26653 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26654 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26655 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26656 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26657 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26658 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26659 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26660 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26661 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26662 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26663 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26664 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26665 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26666 25431 2019-10-31 14:05:53 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26667 25431 2019-10-31 14:05:53 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26668 25431 2019-10-31 14:05:53 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26669 25431 2019-10-31 14:05:53 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26670 25431 2019-10-31 14:05:53 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26671 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26672 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26673 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26674 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26675 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26676 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26677 25431 2019-10-31 14:05:53 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26678 25431 2019-10-31 14:05:53 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26679 25431 2019-10-31 14:05:53 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26680 25432 2019-10-31 14:05:53 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26681 25432 2019-10-31 14:05:53 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26682 25432 2019-10-31 14:05:53 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26683 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26684 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26685 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26686 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26687 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26688 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26689 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26690 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26691 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26692 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26693 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26694 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26695 25432 2019-10-31 14:05:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26696 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26697 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26698 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26699 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26700 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26701 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26702 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26703 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26704 25432 2019-10-31 14:05:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26705 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26706 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26707 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 149 95 0 54 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26708 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26709 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26710 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1451 1058 0 393 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26711 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26712 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26713 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26714 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26715 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26716 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26717 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26718 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26719 25432 2019-10-31 14:05:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:53 +26720 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26721 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26722 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26723 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 130 95 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26724 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26725 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26726 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26727 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26728 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26729 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26730 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 92 58 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26731 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 97 71 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26732 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26733 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-opened.md issues-first-time-opened.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26734 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations.md organizations.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26735 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 80 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26736 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26737 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 144 113 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26738 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26739 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-maintainer-response-duration.md pull-requests-maintainer-response-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26740 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26741 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 106 83 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26742 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors-new.md contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26743 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-closed.md issues-first-time-closed.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26744 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 119 82 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26745 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26746 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/mailing-lists-messages-contributors-new.md mailing-lists-messages-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26747 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-request-code-reviews-new.md pull-request-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26748 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-iteration.md pull-requests-code-reviews-iteration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26749 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26750 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-new.md pull-requests-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26751 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26752 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A_template.md A_template.md 17 9 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26753 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26754 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A-example-template.md A-example-template.md 43 30 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26755 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 115 78 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26756 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26757 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-code-reviews-initiated-contributors-new.md pull-requests-code-reviews-initiated-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26758 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comment-duration.md pull-requests-comment-duration.md 50 42 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26759 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26760 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 105 77 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26761 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26762 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26763 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26764 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26765 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26766 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26767 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26768 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26769 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26770 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-efficiency.md pull-requests-code-reviews-efficiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26771 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-contributor-new.md pull-requests-merge-contributor-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26772 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26773 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-efficiency.md issues-closed-resolution-efficiency.md 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26774 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26775 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-merged.md pull-requests-merged.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26776 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26777 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26778 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26779 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26780 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26781 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26782 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26783 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26784 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26785 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26786 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26787 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26788 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26789 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26790 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26791 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26792 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26793 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26794 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26795 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26796 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26797 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26798 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26799 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26800 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26801 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26802 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26803 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26804 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26805 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26806 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26807 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26808 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26809 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26810 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26811 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26812 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26813 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26814 25432 2019-10-31 14:05:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:54 +26815 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26816 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26817 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26818 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26819 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26820 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26821 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26822 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26823 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26824 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26825 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26826 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26827 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26828 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26829 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26830 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26831 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26832 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26833 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26834 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26835 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26836 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26837 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26838 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26839 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26840 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26841 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26842 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26843 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26844 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26845 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26846 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26847 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26848 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26849 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26850 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26851 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26852 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26853 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26854 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26855 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26856 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26857 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26858 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26859 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26860 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26861 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26862 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26863 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26864 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26865 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26866 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26867 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26868 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26869 25432 2019-10-31 14:05:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26870 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26871 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26872 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26873 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26874 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26875 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26876 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26877 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26878 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26879 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26880 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26881 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26882 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26883 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26884 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26885 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26886 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26887 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26888 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26889 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26890 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26891 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26892 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26893 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26894 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26895 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26896 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26897 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +30940 25434 2019-11-14 10:18:31 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +26898 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26899 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26900 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26901 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26902 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26903 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26904 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26905 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26906 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26907 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26908 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26909 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26910 25432 2019-10-31 14:05:55 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-10-31 14:05:55 +26911 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26912 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26913 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26914 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26915 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26916 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26917 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26918 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26919 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26920 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26921 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26922 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26923 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26924 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26925 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26926 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26927 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26928 25432 2019-10-31 14:05:56 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26929 25432 2019-10-31 14:05:56 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26930 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26931 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/WG-Diversity-Inclusion-Template.md WG-Diversity-Inclusion-Template.md 52 29 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26932 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26933 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/common-template.md common-template.md 49 30 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26934 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26935 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26936 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 86 57 0 29 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26937 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/README.md README.md 17 14 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26938 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 9 7 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26939 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/geography/README.md README.md 9 6 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26940 25434 2019-10-31 14:05:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26941 25434 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26942 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26943 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26944 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26945 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26946 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26947 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26948 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26949 25430 2019-10-31 14:05:56 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26950 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26951 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26952 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26953 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26954 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26955 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26956 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26957 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 58 40 7 11 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26958 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26959 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26960 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26961 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 31 9 4 8 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26962 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26963 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26964 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26965 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26966 25430 2019-10-31 14:05:56 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26967 25430 2019-10-31 14:05:56 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26968 25430 2019-10-31 14:05:56 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26969 25430 2019-10-31 14:05:56 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26970 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26971 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26972 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26973 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26974 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26975 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26976 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26977 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26978 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26979 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26980 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26981 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26982 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26983 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26984 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26985 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26986 25430 2019-10-31 14:05:56 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26987 25430 2019-10-31 14:05:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26988 25430 2019-10-31 14:05:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26989 25430 2019-10-31 14:05:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26990 25430 2019-10-31 14:05:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26991 25430 2019-10-31 14:05:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-10-31 14:05:56 +26992 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26993 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26994 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26995 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26996 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26997 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26998 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +26999 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27000 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27001 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27002 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27003 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27004 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 463 384 29 50 42 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27005 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27006 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27007 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27008 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27009 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27010 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27011 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27012 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27013 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27014 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27015 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27016 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27017 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27018 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27019 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27020 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27021 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27022 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27023 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27024 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27025 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27026 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27027 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27028 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27029 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27030 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27031 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27032 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27033 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27034 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27035 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27036 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27037 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27038 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27039 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27040 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27041 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27042 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27043 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27044 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27045 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27046 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27047 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27048 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27049 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27050 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27051 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27052 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27053 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27054 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27055 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27056 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27057 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27058 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27059 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27060 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27061 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27062 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 64 55 0 9 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27063 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27064 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27065 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27066 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27067 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27068 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27069 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27070 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27071 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27072 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27073 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27074 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 106 93 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27075 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27076 25430 2019-10-31 14:05:57 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 359 342 0 17 27 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27077 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27078 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27079 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27080 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27081 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27082 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27083 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27084 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27085 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27086 25430 2019-10-31 14:05:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:57 +27087 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27088 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27089 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27090 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27091 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27092 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27093 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27094 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27095 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27096 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27097 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27098 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27099 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27100 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27101 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27102 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27103 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27104 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27105 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27106 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27107 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27108 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27109 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27110 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27111 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27112 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27113 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27114 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27115 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27116 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27117 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27118 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27119 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27120 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27121 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27122 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27123 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27124 25430 2019-10-31 14:05:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27125 25430 2019-10-31 14:05:58 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27126 25430 2019-10-31 14:05:58 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27127 25430 2019-10-31 14:05:58 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27128 25430 2019-10-31 14:05:58 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27129 25430 2019-10-31 14:05:58 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27130 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27131 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27132 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27133 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27134 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +31139 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +27135 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27136 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27137 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27138 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27139 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27140 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27141 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27142 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27143 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27144 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27145 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27146 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27147 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27148 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27149 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27150 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27151 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27152 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27153 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27154 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27155 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27156 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27157 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27158 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27159 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27160 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27161 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27162 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27163 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27164 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27165 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27166 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27167 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27168 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27169 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27170 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27171 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27172 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27173 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27174 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27175 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27176 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27177 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27178 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27179 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27180 25430 2019-10-31 14:05:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:58 +27181 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27182 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27183 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27184 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27185 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27186 25430 2019-10-31 14:05:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27187 25430 2019-10-31 14:05:59 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27188 25430 2019-10-31 14:05:59 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27189 25430 2019-10-31 14:05:59 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27190 25430 2019-10-31 14:05:59 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27191 25430 2019-10-31 14:05:59 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27192 25430 2019-10-31 14:05:59 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27193 25430 2019-10-31 14:05:59 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27194 25430 2019-10-31 14:05:59 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27195 25430 2019-10-31 14:05:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27196 25430 2019-10-31 14:05:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27197 25430 2019-10-31 14:05:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27198 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27199 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27200 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27201 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27202 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27203 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27204 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27205 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27206 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27207 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27208 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27209 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27210 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27211 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27212 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27213 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27214 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27215 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27216 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27217 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27218 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27219 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27220 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27221 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27222 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27223 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27224 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27225 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27226 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27227 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27228 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27229 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27230 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27231 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27232 25430 2019-10-31 14:05:59 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27233 25430 2019-10-31 14:05:59 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27234 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27235 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27236 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27237 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27238 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27239 25430 2019-10-31 14:05:59 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27240 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27241 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27242 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27243 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27244 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27245 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27246 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27247 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27248 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27249 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27250 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27251 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27252 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27253 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27254 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27255 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27256 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27257 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27258 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27259 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27260 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27261 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27262 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/sbom_populate.py sbom_populate.py 128 110 5 13 16 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27263 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27264 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27265 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27266 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27267 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27268 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27269 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27270 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27271 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27272 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27273 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27274 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27275 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27276 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27277 25430 2019-10-31 14:05:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-10-31 14:05:59 +27278 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27279 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27280 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27281 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27282 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27283 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27284 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27285 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27286 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27287 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27288 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27289 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27290 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27291 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27292 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27293 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27294 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27295 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27296 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27297 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27298 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27299 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27300 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27301 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27302 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27303 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27304 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27305 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27306 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27307 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27308 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27309 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27310 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27311 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27312 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27313 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27314 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27315 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27316 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27317 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27318 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27319 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27320 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27321 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27322 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27323 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27324 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27325 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27326 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27327 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27328 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27329 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27330 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27331 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27332 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27333 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27334 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27335 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27336 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27337 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27338 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27339 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27340 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27341 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27342 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27343 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27344 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27345 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27346 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27347 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27348 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27349 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27350 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27351 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27352 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27353 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27354 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27355 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27356 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27357 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27358 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27359 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27360 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27361 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27362 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27363 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27364 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27365 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27366 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27367 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27368 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27369 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27370 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27371 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27372 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27373 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27374 25430 2019-10-31 14:06:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-10-31 14:06:00 +27375 25430 2019-10-31 14:06:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27376 25430 2019-10-31 14:06:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27377 25430 2019-10-31 14:06:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27378 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27379 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27380 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27381 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/augur_sbom_config.json augur_sbom_config.json 9 9 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27382 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27383 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27384 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27385 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27386 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 43 43 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27387 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27388 25430 2019-10-31 14:06:01 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27389 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27390 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27391 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27392 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27393 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27394 25430 2019-10-31 14:06:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27395 25430 2019-10-31 14:06:01 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27396 25430 2019-10-31 14:06:01 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27397 25430 2019-10-31 14:06:01 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27398 25430 2019-10-31 14:06:01 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27399 25430 2019-10-31 14:06:01 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27400 25430 2019-10-31 14:06:01 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27401 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27402 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27403 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27404 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27405 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/README.md README.md 39 27 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27406 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27407 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27408 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27409 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27410 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27411 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27412 25430 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27413 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27414 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27415 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27416 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27417 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27418 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27419 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27420 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27421 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27422 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27423 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27424 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27425 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27426 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27427 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27428 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27429 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27430 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27431 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27432 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27433 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27434 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 56 44 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27435 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27436 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27437 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27438 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27439 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27440 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27441 25433 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27443 25433 2019-10-31 14:06:01 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27444 25431 2019-10-31 14:06:01 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27445 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27446 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 129 103 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27447 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27448 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27449 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27450 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27451 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27452 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27453 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27454 25431 2019-10-31 14:06:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27455 25431 2019-10-31 14:06:01 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27456 25431 2019-10-31 14:06:01 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27457 25431 2019-10-31 14:06:01 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27458 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27459 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27460 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27461 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27462 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27463 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27464 25431 2019-10-31 14:06:01 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:01 +27465 25431 2019-10-31 14:06:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27466 25431 2019-10-31 14:06:02 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27467 25431 2019-10-31 14:06:02 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27468 25431 2019-10-31 14:06:02 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27469 25431 2019-10-31 14:06:02 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27470 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27471 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27472 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27473 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27474 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27475 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27476 25431 2019-10-31 14:06:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27477 25431 2019-10-31 14:06:02 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27478 25431 2019-10-31 14:06:02 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27479 25431 2019-10-31 14:06:02 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27480 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27481 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27482 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27483 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27484 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27485 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27486 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27487 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27488 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27489 25431 2019-10-31 14:06:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27490 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27491 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27492 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27493 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27494 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27495 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27496 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27497 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27498 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27499 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27500 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27501 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27502 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27503 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27504 25431 2019-10-31 14:06:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27505 25431 2019-10-31 14:06:02 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27506 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27507 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27508 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27509 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27510 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27511 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27512 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27513 25431 2019-10-31 14:06:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27514 25431 2019-10-31 14:06:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27515 25431 2019-10-31 14:06:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27516 25431 2019-10-31 14:06:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27517 25431 2019-10-31 14:06:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27518 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27519 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27520 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27521 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27522 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27523 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27524 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27525 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27526 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27527 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27528 25431 2019-10-31 14:06:02 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27529 25431 2019-10-31 14:06:02 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27530 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27531 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27532 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27533 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27534 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27535 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27536 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27537 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27538 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27539 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27540 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27541 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27542 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27543 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27544 25431 2019-10-31 14:06:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27545 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27546 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27547 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27548 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27549 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +31174 25430 2019-11-14 10:18:34 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +27550 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27551 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27552 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27553 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27554 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27555 25431 2019-10-31 14:06:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:02 +27556 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27557 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27558 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27559 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27560 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27561 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27562 25431 2019-10-31 14:06:03 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27563 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27564 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27565 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27566 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27567 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27568 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27569 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27570 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27571 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27572 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27573 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27574 25431 2019-10-31 14:06:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27575 25432 2019-10-31 14:06:03 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27576 25432 2019-10-31 14:06:03 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27577 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27578 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27579 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27580 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27581 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27582 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27583 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27584 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27585 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27586 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27587 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27588 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27589 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27590 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27591 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27592 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27593 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27594 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27595 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27596 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27597 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27598 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27599 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27600 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27601 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27602 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27603 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27604 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27605 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27606 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27607 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27608 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27609 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27610 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27611 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27612 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27613 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27614 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27615 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27616 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27617 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27618 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27619 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27620 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27621 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27622 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27623 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27624 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27625 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27626 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27627 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27628 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27629 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27630 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27631 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27632 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27633 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27634 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27635 25432 2019-10-31 14:06:03 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27636 25432 2019-10-31 14:06:03 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27637 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27638 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27639 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27640 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27641 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27642 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27643 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27644 25432 2019-10-31 14:06:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:03 +27645 25432 2019-10-31 14:06:04 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27646 25432 2019-10-31 14:06:04 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27647 25432 2019-10-31 14:06:04 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27648 25432 2019-10-31 14:06:04 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27649 25432 2019-10-31 14:06:04 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27650 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27651 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27652 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27653 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27654 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27655 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27656 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27657 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27658 25432 2019-10-31 14:06:04 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27659 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27660 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 149 95 0 54 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27661 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27662 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27663 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27664 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1451 1058 0 393 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27665 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27666 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27667 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27668 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27669 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27670 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27671 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27672 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27673 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27674 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27675 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27676 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27677 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27678 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27679 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A-example-template.md A-example-template.md 43 30 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27680 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-new.md pull-requests-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27774 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations.md organizations.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27681 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-iteration.md pull-requests-code-reviews-iteration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27682 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27683 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-code-reviews-initiated-contributors-new.md pull-requests-code-reviews-initiated-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27684 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27685 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27686 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 80 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27687 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 119 82 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27688 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27689 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-merged.md pull-requests-merged.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27690 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/mailing-lists-messages-contributors-new.md mailing-lists-messages-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27691 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 106 83 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27692 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27693 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-opened.md issues-first-time-opened.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27694 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors-new.md contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27695 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A_template.md A_template.md 17 9 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27696 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27697 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27698 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27699 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-contributor-new.md pull-requests-merge-contributor-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27700 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27701 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27702 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-efficiency.md pull-requests-code-reviews-efficiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27703 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-efficiency.md issues-closed-resolution-efficiency.md 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27704 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27705 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 115 78 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27706 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27707 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27708 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27709 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27710 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27711 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27712 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27713 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27714 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27715 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27716 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27717 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27718 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27719 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27720 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27721 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27722 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27723 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27724 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27725 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27726 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27727 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27728 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27729 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27730 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27731 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27732 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27733 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27734 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27735 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27736 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27737 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27738 25432 2019-10-31 14:06:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-request-code-reviews-new.md pull-request-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:04 +27739 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27740 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27741 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27742 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27900 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27743 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27744 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27745 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27746 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27747 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27748 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27749 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27750 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27751 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27752 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27753 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27754 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27755 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27756 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27757 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27758 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27759 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27760 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27761 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27762 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27763 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27764 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27765 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27766 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27767 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27768 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27769 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 92 58 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27770 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-maintainer-response-duration.md pull-requests-maintainer-response-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27771 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-closed.md issues-first-time-closed.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27772 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27773 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 105 77 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27775 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27776 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27777 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comment-duration.md pull-requests-comment-duration.md 50 42 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27778 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 97 71 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27779 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27780 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27781 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27782 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27783 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27784 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27785 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27786 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27787 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27788 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27789 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27790 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27791 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27792 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27793 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27794 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27795 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27796 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 130 95 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27797 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27798 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27799 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27800 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27801 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27802 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27803 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27804 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27805 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27806 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 144 113 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27807 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27808 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27809 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27810 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27811 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27812 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27813 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27814 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27815 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27816 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27817 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27818 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27819 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27820 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27821 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27822 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27823 25432 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27824 25432 2019-10-31 14:06:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27825 25434 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/geography/README.md README.md 9 6 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27826 25434 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27827 25434 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/README.md README.md 17 14 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27828 25434 2019-10-31 14:06:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 86 57 0 29 0 Value Worker 0.0.1 scc 2019-10-31 14:06:05 +27829 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27830 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27831 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/common-template.md common-template.md 49 30 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27832 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 9 7 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27833 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/WG-Diversity-Inclusion-Template.md WG-Diversity-Inclusion-Template.md 52 29 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27834 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27835 25434 2019-10-31 14:06:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27836 25434 2019-10-31 14:06:06 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27837 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27838 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27839 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27840 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27841 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27842 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27843 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27844 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27845 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27846 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27847 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27848 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27849 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27850 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27851 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27852 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27853 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27854 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27855 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27856 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27857 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27858 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27859 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27860 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27861 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27862 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27863 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27864 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27865 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27866 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27867 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27868 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27869 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27870 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27871 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27872 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27873 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27874 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27875 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27876 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27877 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27878 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27879 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27880 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27881 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27882 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27883 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27884 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27885 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27886 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27887 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27888 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27889 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27890 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27891 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27892 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27893 25430 2019-10-31 14:06:06 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27894 25430 2019-10-31 14:06:06 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27895 25430 2019-10-31 14:06:06 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27896 25430 2019-10-31 14:06:06 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27897 25430 2019-10-31 14:06:06 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27898 25430 2019-10-31 14:06:06 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27899 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27901 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/augur_sbom_config.json augur_sbom_config.json 9 9 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27902 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27903 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27904 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27905 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27906 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 43 43 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27907 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27908 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27909 25430 2019-10-31 14:06:06 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27910 25430 2019-10-31 14:06:06 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:06 +27911 25430 2019-10-31 14:06:07 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27912 25430 2019-10-31 14:06:07 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27913 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27914 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27915 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27916 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27917 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27918 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27919 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27920 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27921 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27922 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27923 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27924 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27925 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27926 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27927 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27928 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27929 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27930 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27931 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27932 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27933 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27934 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27935 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27971 25430 2019-10-31 14:06:07 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27936 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27937 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27938 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27939 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27940 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27941 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27942 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27943 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27944 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27945 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27946 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27947 25430 2019-10-31 14:06:07 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27948 25430 2019-10-31 14:06:07 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27949 25430 2019-10-31 14:06:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27950 25430 2019-10-31 14:06:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27951 25430 2019-10-31 14:06:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27952 25430 2019-10-31 14:06:07 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27953 25430 2019-10-31 14:06:07 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27954 25430 2019-10-31 14:06:07 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27955 25430 2019-10-31 14:06:07 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27956 25430 2019-10-31 14:06:07 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27957 25430 2019-10-31 14:06:07 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27958 25430 2019-10-31 14:06:07 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27959 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27960 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27961 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27962 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27963 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27964 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27965 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27966 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27967 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27968 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27969 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/README.md README.md 39 27 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27970 25430 2019-10-31 14:06:07 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27972 25430 2019-10-31 14:06:07 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27973 25430 2019-10-31 14:06:07 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27974 25430 2019-10-31 14:06:07 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27975 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27976 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27977 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27978 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27979 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27980 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27981 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27982 25430 2019-10-31 14:06:07 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27983 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27984 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27985 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27986 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27987 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27988 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27989 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27990 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27991 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27992 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27993 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27994 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27995 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 58 40 7 11 1 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27996 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27997 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27998 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 31 9 4 8 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +27999 25430 2019-10-31 14:06:07 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28000 25430 2019-10-31 14:06:07 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28001 25430 2019-10-31 14:06:07 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28002 25430 2019-10-31 14:06:07 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28003 25430 2019-10-31 14:06:07 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28004 25430 2019-10-31 14:06:07 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-10-31 14:06:07 +28005 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28006 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28007 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28008 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28009 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28010 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28011 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28012 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28013 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28014 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28015 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28016 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28017 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28018 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28019 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28020 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 463 384 29 50 42 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28021 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28022 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28023 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28024 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28025 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28026 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28027 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28028 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28029 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28030 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28031 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28032 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28033 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28034 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28035 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28036 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28037 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28038 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28039 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28040 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28041 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28042 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +31182 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +28043 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28044 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28045 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28046 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28047 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28048 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28049 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28050 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28051 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28052 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28053 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28054 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28055 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28056 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28057 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28058 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28059 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28060 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28061 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28062 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28063 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28064 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28065 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28066 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28067 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28068 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28069 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28070 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28071 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28072 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28073 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 64 55 0 9 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28074 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28075 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28076 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28077 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28078 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28079 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28080 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28081 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28082 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28083 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28084 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 106 93 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28085 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28086 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28087 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28088 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28089 25430 2019-10-31 14:06:08 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 359 342 0 17 27 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28090 25430 2019-10-31 14:06:08 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28091 25430 2019-10-31 14:06:08 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28092 25430 2019-10-31 14:06:08 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28093 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28094 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28095 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28096 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28097 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28098 25430 2019-10-31 14:06:08 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28099 25430 2019-10-31 14:06:08 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28100 25430 2019-10-31 14:06:08 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28101 25430 2019-10-31 14:06:08 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:08 +28102 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28103 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28104 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28105 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28106 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28107 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28108 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28109 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28110 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28280 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28111 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28112 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28113 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28114 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28115 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28116 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28117 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28118 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28119 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28120 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28121 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28122 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28123 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28124 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28125 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28126 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28127 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28128 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28129 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28130 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28131 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28132 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28133 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28134 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28135 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28136 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28137 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28138 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28139 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28140 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28141 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28142 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28143 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28144 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28145 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28146 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28147 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28148 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28149 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28150 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28151 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28152 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28153 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28154 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28155 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28156 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28157 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28158 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28159 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28160 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28161 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28162 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28163 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28164 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28165 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28166 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28167 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28168 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28169 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28170 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28171 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28172 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28173 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28174 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28175 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28176 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28177 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28178 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28179 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28180 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28181 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28182 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28183 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28184 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28185 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28186 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28187 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28188 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28189 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28190 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28191 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28192 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28193 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28194 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28195 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28196 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28197 25430 2019-10-31 14:06:09 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-10-31 14:06:09 +28198 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28199 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28200 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/sbom_populate.py sbom_populate.py 128 110 5 13 16 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28201 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28202 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28203 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28204 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28205 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28206 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28207 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28208 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28209 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28210 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28211 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28212 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28213 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28214 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28215 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28216 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28217 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28218 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28219 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28220 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28221 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28222 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28223 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28224 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28225 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28226 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28227 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28228 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28229 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28230 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28231 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28232 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28233 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28234 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28235 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28236 25430 2019-10-31 14:06:10 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28237 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28238 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28239 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28240 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28241 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28242 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28243 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28244 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28245 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28246 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28247 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28281 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28248 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28249 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28250 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28251 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28252 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28253 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28254 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28255 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28256 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28257 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28258 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28259 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28260 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28261 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28262 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28263 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28264 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28265 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28266 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28267 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28268 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28269 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28270 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28271 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28272 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28273 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28274 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28275 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28276 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28277 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28278 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28279 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28282 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28283 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28284 25430 2019-10-31 14:06:10 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28285 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28286 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28287 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28288 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28289 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28290 25430 2019-10-31 14:06:10 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28291 25430 2019-10-31 14:06:10 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28292 25430 2019-10-31 14:06:10 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28293 25430 2019-10-31 14:06:10 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:10 +28294 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28295 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28296 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28297 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28298 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28299 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28300 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28301 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28302 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28303 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28304 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28305 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28306 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28307 25430 2019-10-31 14:06:11 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28308 25433 2019-10-31 14:06:11 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28309 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28310 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28311 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28312 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28313 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28314 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28315 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28316 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28317 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28318 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28319 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28320 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28321 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28322 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28323 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28324 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28325 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28326 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 56 44 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28327 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28328 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28329 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28330 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28331 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28332 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28333 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28334 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28335 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28336 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28337 25433 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28338 25433 2019-10-31 14:06:11 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28339 25431 2019-10-31 14:06:11 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28340 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28341 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28342 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28343 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28344 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28345 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28346 25431 2019-10-31 14:06:11 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28347 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28348 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28349 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 129 103 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28350 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28351 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28352 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28353 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28354 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28355 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28356 25431 2019-10-31 14:06:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28357 25431 2019-10-31 14:06:11 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28358 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28359 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28360 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28361 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28362 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28363 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28364 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28365 25431 2019-10-31 14:06:11 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28366 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28367 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28368 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28369 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28370 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28371 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28372 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28373 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28374 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28375 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28376 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28377 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28378 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28379 25431 2019-10-31 14:06:11 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:11 +28380 25431 2019-10-31 14:06:12 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28381 25431 2019-10-31 14:06:12 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28382 25431 2019-10-31 14:06:12 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28383 25431 2019-10-31 14:06:12 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28384 25431 2019-10-31 14:06:12 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28385 25431 2019-10-31 14:06:12 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28386 25431 2019-10-31 14:06:12 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28387 25431 2019-10-31 14:06:12 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28388 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28389 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28390 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28391 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28392 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28393 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28394 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28395 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28396 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28397 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28398 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28399 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28400 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28401 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28402 25431 2019-10-31 14:06:12 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28403 25431 2019-10-31 14:06:12 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28404 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28405 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28406 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28407 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28408 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28409 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28410 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28411 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28412 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28413 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28414 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28415 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28416 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28417 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28418 25431 2019-10-31 14:06:12 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28419 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28420 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28421 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28422 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28423 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28424 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28425 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28426 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28427 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28428 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28429 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28430 25431 2019-10-31 14:06:12 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28431 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28432 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28433 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28434 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28435 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28436 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28437 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28438 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28439 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28440 25431 2019-10-31 14:06:12 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28441 25431 2019-10-31 14:06:12 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28442 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28443 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28444 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28445 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28446 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28447 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28448 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28449 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28450 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28451 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28452 25431 2019-10-31 14:06:12 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28453 25431 2019-10-31 14:06:12 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28454 25431 2019-10-31 14:06:12 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28455 25431 2019-10-31 14:06:12 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28456 25431 2019-10-31 14:06:12 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28457 25431 2019-10-31 14:06:12 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28458 25431 2019-10-31 14:06:12 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28459 25431 2019-10-31 14:06:12 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +31415 25434 2019-11-14 10:18:37 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +28460 25431 2019-10-31 14:06:12 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28461 25431 2019-10-31 14:06:12 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28462 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28463 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28464 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28465 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28466 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28467 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28468 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28469 25431 2019-10-31 14:06:12 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:12 +28470 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28471 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28472 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28473 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28474 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28475 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28476 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28477 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28478 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28479 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28480 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28481 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28482 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28483 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28484 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28485 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28486 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28487 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28488 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28489 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28490 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28491 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28492 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28493 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28494 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28495 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28496 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28497 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28498 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28499 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28500 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28501 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28502 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28503 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28504 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28505 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28506 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28507 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28508 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28509 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28510 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28511 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28512 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28513 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28514 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28515 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28516 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28517 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28518 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28519 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28520 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28521 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28522 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28523 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28524 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28525 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28526 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28527 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28528 25432 2019-10-31 14:06:13 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28529 25432 2019-10-31 14:06:13 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28530 25432 2019-10-31 14:06:13 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28531 25432 2019-10-31 14:06:13 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28532 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28533 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28534 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28535 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28536 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28537 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28538 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28539 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28540 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28541 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28542 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28543 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28544 25432 2019-10-31 14:06:13 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28545 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28546 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28547 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28548 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28549 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28550 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28551 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28552 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28553 25432 2019-10-31 14:06:13 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28554 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28555 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 149 95 0 54 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28556 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28557 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28558 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1451 1058 0 393 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28559 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28560 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28561 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28562 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28563 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-request-code-reviews-new.md pull-request-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28564 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28565 25432 2019-10-31 14:06:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:13 +28566 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28567 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28568 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28569 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28570 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28571 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28572 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/mailing-lists-messages-contributors-new.md mailing-lists-messages-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28573 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-opened.md issues-first-time-opened.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28574 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-new.md pull-requests-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28575 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 119 82 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28576 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28577 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28578 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 106 83 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28579 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28580 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 80 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28581 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28582 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28583 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28584 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28585 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors-new.md contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28586 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28587 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28588 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-iteration.md pull-requests-code-reviews-iteration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28589 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-efficiency.md issues-closed-resolution-efficiency.md 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28590 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28591 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28592 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28593 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28594 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 144 113 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28595 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-efficiency.md pull-requests-code-reviews-efficiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28596 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28597 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28598 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 92 58 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28599 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28600 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28601 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28602 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-closed.md issues-first-time-closed.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28603 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-maintainer-response-duration.md pull-requests-maintainer-response-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28604 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-contributor-new.md pull-requests-merge-contributor-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28605 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 115 78 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28606 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 130 95 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28607 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations.md organizations.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28608 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 105 77 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28609 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-merged.md pull-requests-merged.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28610 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 97 71 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28611 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28612 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A_template.md A_template.md 17 9 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28613 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28614 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28615 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28616 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28617 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28618 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A-example-template.md A-example-template.md 43 30 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28619 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28620 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-code-reviews-initiated-contributors-new.md pull-requests-code-reviews-initiated-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28621 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +31678 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +28622 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28623 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28624 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28625 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28626 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28627 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28628 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28629 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comment-duration.md pull-requests-comment-duration.md 50 42 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28630 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28631 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28632 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28633 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28634 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28635 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28636 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28637 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28638 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28639 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28640 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28641 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28642 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28643 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28644 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28645 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28646 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28647 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28648 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28649 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28650 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28651 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28652 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28653 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28654 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28655 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28656 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28657 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28658 25432 2019-10-31 14:06:14 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:14 +28659 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28660 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28661 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28662 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28663 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28664 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28665 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28666 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28667 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28668 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28669 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28670 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28671 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28672 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28673 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28674 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28675 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28676 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28677 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28678 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28679 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28680 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28681 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28682 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28683 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28684 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28685 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28686 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28687 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28688 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28689 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28690 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28691 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28692 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28693 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28694 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28695 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28696 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28697 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28698 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28699 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28700 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28701 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28702 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28703 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28704 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28705 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28706 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28707 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28708 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28709 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28710 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28711 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28712 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28713 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28714 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28715 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28716 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28717 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28718 25432 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28719 25432 2019-10-31 14:06:15 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28720 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28721 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 9 7 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28722 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/geography/README.md README.md 9 6 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28723 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28724 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 86 57 0 29 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28725 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28726 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28727 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/README.md README.md 17 14 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28728 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/WG-Diversity-Inclusion-Template.md WG-Diversity-Inclusion-Template.md 52 29 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28729 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/common-template.md common-template.md 49 30 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28730 25434 2019-10-31 14:06:15 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28731 25434 2019-10-31 14:06:15 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28732 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28733 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28734 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28735 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28736 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28737 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28738 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28739 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28740 25430 2019-10-31 14:06:15 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:15 +28741 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28742 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28743 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28744 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28745 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28746 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28747 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28748 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28749 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28750 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28751 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28752 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28753 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28754 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28755 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28756 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28757 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/sbom_populate.py sbom_populate.py 128 110 5 13 16 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28758 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28759 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28760 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28761 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28762 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28763 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28764 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28765 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28766 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28767 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28768 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28769 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28770 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28771 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28772 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28773 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28774 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28775 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28776 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28777 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28778 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28779 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28780 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28781 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28782 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28783 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +31865 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +28784 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28785 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28786 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28787 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28788 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28789 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28790 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28791 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28792 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28793 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28794 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28795 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28796 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28797 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28798 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28799 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28800 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28801 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28802 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28803 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28804 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28805 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28806 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28807 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28808 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28809 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28810 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28811 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28812 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28813 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28814 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28815 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28816 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28817 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28818 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28819 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28820 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28821 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28822 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28823 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28824 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28825 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28826 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28827 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28828 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28829 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28830 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28831 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28832 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28833 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28834 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28835 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28836 25430 2019-10-31 14:06:16 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:16 +28837 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28838 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28839 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28840 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28841 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28842 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28843 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28844 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28845 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28846 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28847 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28848 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28849 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28850 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28886 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28851 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28852 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28853 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28854 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28855 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28856 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28857 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28858 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28859 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28860 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28861 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28862 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28863 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28864 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28865 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28866 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28867 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28868 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28869 25430 2019-10-31 14:06:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28870 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28871 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28872 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28873 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28874 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/augur_sbom_config.json augur_sbom_config.json 9 9 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28875 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28876 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28877 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 43 43 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28878 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28879 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28880 25430 2019-10-31 14:06:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28881 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28882 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28883 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28884 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28885 25430 2019-10-31 14:06:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28887 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28888 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28889 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28890 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28891 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28892 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28893 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28894 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28895 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28896 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28897 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28898 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28899 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28900 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28901 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28902 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28903 25430 2019-10-31 14:06:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28904 25430 2019-10-31 14:06:17 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28905 25430 2019-10-31 14:06:17 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28906 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28907 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28908 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28909 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28910 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28911 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28912 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28913 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28914 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28915 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28916 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28917 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28918 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28919 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28920 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28921 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28922 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28923 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28924 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28925 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28926 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28927 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28928 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28929 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28930 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28931 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28932 25430 2019-10-31 14:06:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:17 +28933 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28934 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28935 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28936 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28937 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28938 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28939 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28940 25430 2019-10-31 14:06:18 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28941 25430 2019-10-31 14:06:18 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28942 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28943 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28944 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28945 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28946 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/sbom/README.md README.md 39 27 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28947 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28948 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28949 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28950 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28951 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28952 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28953 25430 2019-10-31 14:06:18 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28954 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28955 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28956 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28957 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28958 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28959 25430 2019-10-31 14:06:18 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28960 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28961 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28962 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28963 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28964 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28965 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28966 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28967 25430 2019-10-31 14:06:18 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28968 25430 2019-10-31 14:06:18 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28969 25430 2019-10-31 14:06:18 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28970 25430 2019-10-31 14:06:18 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28971 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28972 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28973 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28974 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28975 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28976 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28977 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28978 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28979 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28980 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28981 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28982 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28983 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28984 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28985 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28986 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28987 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28988 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28989 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28990 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28991 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28992 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 463 384 29 50 42 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28993 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28994 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28995 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28996 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28997 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28998 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +28999 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29000 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29001 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29002 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29003 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29004 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29005 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29006 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29007 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29008 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29009 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29010 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29011 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29012 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29013 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29014 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29015 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29016 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29017 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29018 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29019 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29020 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29021 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29022 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29023 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29024 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29025 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29026 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29027 25430 2019-10-31 14:06:18 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:18 +29028 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29029 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29030 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29031 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29032 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29033 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29034 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29035 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29036 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29037 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29038 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29039 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29040 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29041 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29042 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29043 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29044 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29045 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29046 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 64 55 0 9 1 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29047 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29048 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29049 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29050 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29051 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29052 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29053 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29054 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29055 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29056 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29057 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29058 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 106 93 0 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29059 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29060 25430 2019-10-31 14:06:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 359 342 0 17 27 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29061 25430 2019-10-31 14:06:19 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29062 25430 2019-10-31 14:06:19 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29063 25430 2019-10-31 14:06:19 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29064 25430 2019-10-31 14:06:19 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29065 25430 2019-10-31 14:06:19 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29066 25430 2019-10-31 14:06:19 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29067 25430 2019-10-31 14:06:19 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29068 25430 2019-10-31 14:06:19 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29069 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29070 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29071 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29072 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29073 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29074 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29075 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29076 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29077 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29078 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29079 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29080 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29081 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29082 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29083 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29084 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29085 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29086 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29087 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29088 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29089 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29090 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29091 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29092 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29093 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29094 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29095 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29096 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29097 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29098 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29099 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29100 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29101 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29102 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29103 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29104 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29105 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29106 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29107 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29108 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29109 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29110 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29111 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29112 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29113 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29114 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29115 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29116 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29117 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29118 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29119 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29120 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29121 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29122 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29123 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29124 25430 2019-10-31 14:06:19 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:19 +29125 25430 2019-10-31 14:06:20 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29126 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29127 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29128 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29129 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29130 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29131 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29132 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29133 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29134 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29135 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29136 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29137 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29138 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29139 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29140 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 31 9 4 8 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29141 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29142 25430 2019-10-31 14:06:20 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 58 40 7 11 1 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29143 25430 2019-10-31 14:06:20 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29144 25430 2019-10-31 14:06:20 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29145 25430 2019-10-31 14:06:20 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29146 25430 2019-10-31 14:06:20 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29147 25430 2019-10-31 14:06:20 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29148 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29149 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29150 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29151 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29152 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29153 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29154 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29155 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +32322 25434 2019-11-14 10:18:47 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +29156 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29157 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29158 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29159 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29160 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29161 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29162 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29163 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29164 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29165 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29166 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29167 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29168 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29169 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29170 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29171 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29172 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29173 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29174 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29175 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29176 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29177 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29178 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29179 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29180 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29181 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29182 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29183 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29184 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29185 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29186 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29187 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29188 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29189 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29190 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29191 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29192 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29193 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29194 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29195 25430 2019-10-31 14:06:20 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29196 25430 2019-10-31 14:06:20 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29197 25430 2019-10-31 14:06:20 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29198 25430 2019-10-31 14:06:20 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29199 25430 2019-10-31 14:06:20 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29200 25430 2019-10-31 14:06:20 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29201 25430 2019-10-31 14:06:20 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29202 25430 2019-10-31 14:06:20 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29203 25433 2019-10-31 14:06:20 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29204 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29205 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29206 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29207 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29208 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29209 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29210 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29211 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29212 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29213 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29214 25433 2019-10-31 14:06:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:20 +29215 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29216 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29217 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29218 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29219 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29220 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29221 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29222 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29223 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 56 44 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29224 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29225 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29226 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29227 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29228 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29229 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29230 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29231 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29232 25433 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29233 25433 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29234 25431 2019-10-31 14:06:21 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29235 25431 2019-10-31 14:06:21 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29236 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29237 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29238 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29239 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29240 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29241 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29242 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29243 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29244 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29245 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29246 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29247 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29248 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29249 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29250 25431 2019-10-31 14:06:21 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29251 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29252 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29253 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29254 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29255 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29256 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29257 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29258 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29259 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29260 25431 2019-10-31 14:06:21 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29261 25431 2019-10-31 14:06:21 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29262 25431 2019-10-31 14:06:21 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29263 25431 2019-10-31 14:06:21 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29264 25431 2019-10-31 14:06:21 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29265 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29266 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29267 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29268 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29269 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29270 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29271 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29272 25431 2019-10-31 14:06:21 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29273 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29274 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29275 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29276 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29277 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29278 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29279 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29280 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29281 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29282 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29283 25431 2019-10-31 14:06:21 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29284 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29285 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29286 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29287 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29288 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29289 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29290 25431 2019-10-31 14:06:21 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29291 25431 2019-10-31 14:06:21 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29292 25431 2019-10-31 14:06:21 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29293 25431 2019-10-31 14:06:21 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +32544 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +29294 25431 2019-10-31 14:06:21 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29295 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29296 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29297 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29298 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 129 103 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29299 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29300 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29301 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29302 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29303 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29304 25431 2019-10-31 14:06:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29305 25431 2019-10-31 14:06:21 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29306 25431 2019-10-31 14:06:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:21 +29307 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29308 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29309 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29310 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29311 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29312 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29313 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29314 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29315 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29316 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29317 25431 2019-10-31 14:06:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29318 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29319 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29320 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29321 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29322 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29323 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29324 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29325 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29326 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29327 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29328 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29329 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29330 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29331 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29332 25431 2019-10-31 14:06:22 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29333 25431 2019-10-31 14:06:22 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29334 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29335 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29336 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29337 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29338 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29339 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29340 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29341 25431 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29342 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29343 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29344 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29345 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29346 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29347 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29348 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29349 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29350 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29351 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29352 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29353 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29354 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29355 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29356 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29357 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29358 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29359 25431 2019-10-31 14:06:22 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29360 25431 2019-10-31 14:06:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29361 25431 2019-10-31 14:06:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29362 25431 2019-10-31 14:06:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29363 25431 2019-10-31 14:06:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29364 25431 2019-10-31 14:06:22 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29365 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29366 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29367 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29368 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29369 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29370 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29371 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29372 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29373 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29374 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29375 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29376 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29377 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29378 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29379 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29380 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29381 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29382 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29383 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29384 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29385 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29386 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29387 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29388 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29389 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29390 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29391 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29392 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29393 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29394 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29395 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29396 25432 2019-10-31 14:06:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-10-31 14:06:22 +29397 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29398 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29399 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29400 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29401 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29402 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29403 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29404 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29405 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29406 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29407 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29408 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29409 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29410 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29411 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29412 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29413 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29414 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29415 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29416 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29417 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29418 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29419 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29420 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29421 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29422 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29423 25432 2019-10-31 14:06:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29424 25432 2019-10-31 14:06:23 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29425 25432 2019-10-31 14:06:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29426 25432 2019-10-31 14:06:23 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29427 25432 2019-10-31 14:06:23 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29428 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29429 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29430 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29431 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29432 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29433 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29434 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29435 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29436 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29437 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29438 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29439 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29440 25432 2019-10-31 14:06:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29441 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29442 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29443 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29444 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29445 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29446 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29447 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29448 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29449 25432 2019-10-31 14:06:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29450 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29451 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 149 95 0 54 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29452 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29453 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29454 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29455 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1451 1058 0 393 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29456 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29457 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29458 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29459 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29460 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29461 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29462 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29463 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29464 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors-new.md contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29465 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29466 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29467 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29468 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 105 77 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29469 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29470 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 115 78 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29471 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 97 71 0 26 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29472 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-iteration.md pull-requests-code-reviews-iteration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29473 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 144 113 0 31 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29474 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 92 58 0 34 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29475 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29476 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29477 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29478 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29479 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29480 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29481 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29482 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29483 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-contributor-new.md pull-requests-merge-contributor-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29484 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29485 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29486 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29487 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29488 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-closed.md issues-first-time-closed.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29489 25432 2019-10-31 14:06:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:23 +29490 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-maintainer-response-duration.md pull-requests-maintainer-response-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29491 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29492 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-efficiency.md issues-closed-resolution-efficiency.md 20 11 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29493 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comment-duration.md pull-requests-comment-duration.md 50 42 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29494 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29495 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations.md organizations.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29496 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-efficiency.md pull-requests-code-reviews-efficiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29497 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29498 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29499 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29500 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29501 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29502 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29503 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29504 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29505 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 130 95 0 35 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29506 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29507 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29508 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29509 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29510 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29511 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29512 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29513 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29514 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29515 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-request-code-reviews-new.md pull-request-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29516 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29517 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29518 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29519 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29520 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29521 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29522 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29523 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29524 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 106 83 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29525 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29526 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29527 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29528 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29529 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29530 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29531 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29532 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 80 0 28 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29533 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29534 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29535 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-first-time-opened.md issues-first-time-opened.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29536 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29537 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29538 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29539 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29540 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29541 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 119 82 0 37 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29542 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29543 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29544 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/mailing-lists-messages-contributors-new.md mailing-lists-messages-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29545 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29546 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29547 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29548 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29549 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-new.md pull-requests-code-reviews-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29550 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29551 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29552 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29553 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29554 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29555 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29556 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +32691 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +29557 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29558 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29559 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29560 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29561 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29562 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29563 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29564 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29565 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29566 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29567 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29568 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29569 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29570 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29571 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29572 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29573 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29574 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29575 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29576 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29577 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29578 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29579 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29580 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29581 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29582 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29583 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29584 25432 2019-10-31 14:06:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:24 +29585 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29586 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29587 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29588 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29589 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29590 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29591 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29592 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29593 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29594 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29595 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29596 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29597 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29598 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29599 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29600 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29601 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29602 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29603 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29604 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29605 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29606 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29607 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29608 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29609 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A_template.md A_template.md 17 9 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29610 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29611 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-merged.md pull-requests-merged.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29612 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/pull-requests-code-reviews-initiated-contributors-new.md pull-requests-code-reviews-initiated-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29613 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29614 25432 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/template_folder/A-example-template.md A-example-template.md 43 30 0 13 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29615 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29616 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29617 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29618 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 86 57 0 29 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29619 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/organizational-affiliation/README.md README.md 17 14 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29620 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/geography/README.md README.md 9 6 0 3 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29621 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/WG-Diversity-Inclusion-Template.md WG-Diversity-Inclusion-Template.md 52 29 0 23 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29622 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 9 7 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29623 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29624 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/common-template.md common-template.md 49 30 0 19 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29625 25434 2019-10-31 14:06:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/metrics/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29626 25434 2019-10-31 14:06:25 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-10-31 14:06:25 +29627 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29628 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29629 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29630 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29631 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29632 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29633 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29634 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29635 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29636 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29637 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29638 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29639 25434 2019-11-14 10:18:16 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29641 25430 2019-11-14 10:18:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29642 25430 2019-11-14 10:18:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29643 25430 2019-11-14 10:18:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29644 25430 2019-11-14 10:18:16 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29645 25430 2019-11-14 10:18:16 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29646 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29647 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29648 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29649 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29650 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29651 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29652 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29653 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29654 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29655 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29656 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29657 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29658 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29659 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29660 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29661 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29662 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29663 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29664 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29665 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29666 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29667 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29668 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29669 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29670 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29671 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29672 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29673 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29674 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29675 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29676 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29677 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29678 25430 2019-11-14 10:18:16 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:16 +29679 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29680 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29681 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29682 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29683 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29684 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29685 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29766 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29686 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29687 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29688 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29689 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29690 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29691 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29692 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29693 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29694 25430 2019-11-14 10:18:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29695 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29696 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29697 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29698 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29699 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29700 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29701 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29702 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29703 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29704 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29705 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29706 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29707 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29708 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29709 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29710 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29711 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29712 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29713 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29714 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29715 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29716 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29717 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29718 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29719 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29720 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29721 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29722 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29723 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29724 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29725 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29726 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29727 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29728 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29729 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29730 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29731 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29732 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29733 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29734 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29735 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29736 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29737 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29738 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29739 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29740 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29741 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29742 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29743 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29744 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29745 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29746 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29747 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29748 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29749 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29750 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29751 25430 2019-11-14 10:18:17 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29752 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29753 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29754 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29755 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29756 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29757 25430 2019-11-14 10:18:17 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29758 25430 2019-11-14 10:18:17 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29759 25430 2019-11-14 10:18:17 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29760 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29761 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29762 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29763 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29764 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29765 25430 2019-11-14 10:18:17 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:17 +29767 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29768 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29769 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29770 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29771 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29772 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29773 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29774 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29775 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29776 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29777 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29778 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29779 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29780 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29781 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29782 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29783 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29784 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29785 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29786 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29787 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29788 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29789 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29790 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29791 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29792 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29793 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29794 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29795 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29796 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29797 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29798 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29799 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29800 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29801 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29802 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29803 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29804 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29805 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29806 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29807 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29808 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29809 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29810 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29811 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29812 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29813 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29814 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29815 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29816 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29817 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29818 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29904 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29819 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29820 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29821 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29822 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29823 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29824 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29825 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29826 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29827 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29828 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29829 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29830 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29831 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29832 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29833 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29834 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29835 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29836 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29837 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29838 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29839 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29840 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29841 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29842 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29843 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29844 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29845 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29846 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29847 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29848 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29849 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29850 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29851 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29852 25430 2019-11-14 10:18:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:18:18 +29853 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29854 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29855 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29856 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29857 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29858 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29859 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29860 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29861 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29862 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29863 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29864 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29865 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29866 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29867 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29868 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29869 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29870 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29871 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29872 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29873 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29874 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29875 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29876 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29877 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29878 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29879 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29880 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29881 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29882 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29883 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29884 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29885 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29886 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29887 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29888 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29889 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29890 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29891 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29892 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29893 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29894 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29895 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29896 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29897 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29898 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29899 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29900 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29901 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29902 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29903 25430 2019-11-14 10:18:19 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29905 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29906 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29907 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29908 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29909 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29910 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29911 25430 2019-11-14 10:18:19 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29912 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29913 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29914 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29915 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29916 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29917 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29918 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29919 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29920 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29921 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29922 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29923 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29924 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29925 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29926 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29927 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29928 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29929 25430 2019-11-14 10:18:19 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29930 25430 2019-11-14 10:18:19 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29931 25430 2019-11-14 10:18:19 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29932 25430 2019-11-14 10:18:19 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29933 25430 2019-11-14 10:18:19 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29934 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29935 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29936 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29937 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29938 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29939 25430 2019-11-14 10:18:19 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:19 +29940 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29941 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29942 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29943 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29944 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29945 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29946 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29947 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29948 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29949 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29950 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29951 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29952 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29953 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29954 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29955 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29956 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29957 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29958 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29959 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29960 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29961 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29962 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29963 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29964 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29965 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29966 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29967 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29968 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29969 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29970 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29971 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29972 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29973 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29974 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29975 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29976 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29977 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29978 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29979 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29980 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29981 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29982 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29983 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29984 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29985 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29986 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29987 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29988 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29989 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29990 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29991 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30025 25430 2019-11-14 10:18:20 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29992 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29993 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29994 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29995 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29996 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29997 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29998 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +29999 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30000 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30001 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30002 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30003 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30004 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30005 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30006 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30007 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30008 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30009 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30010 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30011 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30012 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30013 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30014 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30015 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30016 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30017 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30018 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30019 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30020 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30021 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30022 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30023 25430 2019-11-14 10:18:20 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30024 25430 2019-11-14 10:18:20 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30026 25430 2019-11-14 10:18:20 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:20 +30027 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30028 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30029 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30030 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30031 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30032 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30033 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30034 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30035 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30036 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30037 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30038 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30039 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30040 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30041 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30042 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30043 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30044 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30045 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30046 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30047 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30048 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30049 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30050 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30051 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30052 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30053 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30054 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30055 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30056 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30057 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30058 25430 2019-11-14 10:18:21 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30059 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30060 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30061 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30062 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30063 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30064 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30065 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30066 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30067 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30068 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30069 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30070 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30071 25430 2019-11-14 10:18:21 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30072 25430 2019-11-14 10:18:21 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30073 25430 2019-11-14 10:18:21 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30074 25430 2019-11-14 10:18:21 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30075 25430 2019-11-14 10:18:21 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30077 25430 2019-11-14 10:18:21 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30078 25430 2019-11-14 10:18:21 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30079 25430 2019-11-14 10:18:21 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30080 25430 2019-11-14 10:18:21 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30081 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30082 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30083 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30084 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30085 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30086 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30087 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30088 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30089 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30090 25430 2019-11-14 10:18:21 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30091 25430 2019-11-14 10:18:21 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30092 25430 2019-11-14 10:18:21 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30093 25430 2019-11-14 10:18:21 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30094 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30095 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30096 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30097 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30098 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30099 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30100 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30101 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30102 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30103 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30104 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30105 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30106 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30107 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30108 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30109 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30110 25430 2019-11-14 10:18:21 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30111 25430 2019-11-14 10:18:21 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30112 25430 2019-11-14 10:18:21 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30113 25430 2019-11-14 10:18:21 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:21 +30114 25430 2019-11-14 10:18:22 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30115 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30116 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30117 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30118 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30119 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30120 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30121 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30122 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30123 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30124 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30125 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30126 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30127 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30128 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30129 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30130 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30131 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30132 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30133 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30134 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30135 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30136 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30137 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30138 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30139 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30140 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30141 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30142 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30143 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30144 25433 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30146 25433 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30147 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30148 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30149 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30150 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30151 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30152 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30153 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30154 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30155 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30156 25431 2019-11-14 10:18:22 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30157 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30158 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30159 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30160 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30161 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30162 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30163 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30164 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30165 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30166 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30167 25431 2019-11-14 10:18:22 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30168 25431 2019-11-14 10:18:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30169 25431 2019-11-14 10:18:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30170 25431 2019-11-14 10:18:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30171 25431 2019-11-14 10:18:22 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30172 25431 2019-11-14 10:18:22 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30173 25431 2019-11-14 10:18:22 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30174 25431 2019-11-14 10:18:22 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30175 25431 2019-11-14 10:18:22 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30176 25431 2019-11-14 10:18:22 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30177 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30178 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30179 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30180 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30181 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30182 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30183 25431 2019-11-14 10:18:22 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30184 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30185 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30186 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30187 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30188 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30189 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30190 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30191 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30192 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30193 25431 2019-11-14 10:18:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30194 25431 2019-11-14 10:18:22 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30195 25431 2019-11-14 10:18:22 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30196 25431 2019-11-14 10:18:22 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:22 +30197 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30198 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30199 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30200 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30201 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30202 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30203 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30204 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30205 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30206 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30207 25431 2019-11-14 10:18:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30208 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30209 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30210 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30211 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30212 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30213 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30214 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30215 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30216 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30217 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30218 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30219 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30220 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30221 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30222 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30223 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30224 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30225 25431 2019-11-14 10:18:23 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30226 25431 2019-11-14 10:18:23 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30227 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30228 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30229 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30230 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30231 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30232 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30233 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30234 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30235 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30236 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30237 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30238 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30239 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30240 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30241 25431 2019-11-14 10:18:23 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30242 25431 2019-11-14 10:18:23 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30243 25431 2019-11-14 10:18:23 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30244 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30245 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30246 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30247 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30248 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30249 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30250 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30251 25431 2019-11-14 10:18:23 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30252 25431 2019-11-14 10:18:23 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30253 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30254 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30255 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30256 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30257 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30258 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30259 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30260 25431 2019-11-14 10:18:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30261 25431 2019-11-14 10:18:23 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30262 25431 2019-11-14 10:18:23 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30263 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30264 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30265 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30266 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30267 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30268 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30269 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30270 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30271 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30272 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30273 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30274 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30275 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30276 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30277 25431 2019-11-14 10:18:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30278 25432 2019-11-14 10:18:23 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30279 25432 2019-11-14 10:18:23 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:23 +30280 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30281 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30282 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30283 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30284 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30285 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30286 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30287 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30288 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30289 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30290 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30291 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30292 25432 2019-11-14 10:18:24 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30293 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30294 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30295 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30296 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30297 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30298 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30299 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30300 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30301 25432 2019-11-14 10:18:24 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30302 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30303 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30304 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30305 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30306 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30307 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30308 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30309 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30310 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30311 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30312 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30313 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30314 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30315 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30316 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30317 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30318 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30319 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30320 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30321 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30322 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30323 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30324 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30325 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30326 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30327 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30328 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30329 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30330 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30331 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30332 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30333 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30334 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30335 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30336 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30337 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30338 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30339 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30340 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30341 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30342 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30343 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30344 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30345 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30346 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30347 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30348 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30349 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30350 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30351 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30352 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30353 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30354 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30355 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30356 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30357 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30358 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30359 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30360 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30361 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30362 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30363 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30364 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30365 25432 2019-11-14 10:18:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:24 +30366 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30367 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30368 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30369 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30370 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30371 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30372 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30373 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30374 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30375 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30376 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30377 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30378 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30379 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30380 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30381 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30382 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30383 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30384 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30385 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30386 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30387 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30388 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30389 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30390 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30391 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30392 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30393 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30394 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30395 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30396 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30397 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30398 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30399 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30400 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30401 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30402 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30403 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30640 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30404 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30405 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30406 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30407 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30408 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30409 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30410 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30411 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30412 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30413 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30414 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30415 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30416 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30417 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30418 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30419 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30420 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30421 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30422 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30423 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30424 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30425 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30426 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30427 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30428 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30429 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30430 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30431 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30432 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30433 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30434 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30435 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30436 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30437 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30438 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30439 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30440 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30441 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30442 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30443 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30444 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30445 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30446 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30447 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30448 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30449 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30450 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30451 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30452 25432 2019-11-14 10:18:25 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:25 +30453 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30454 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30455 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30456 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30457 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30458 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30459 25432 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30460 25432 2019-11-14 10:18:26 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30461 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30462 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30463 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30464 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30465 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30466 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30467 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30468 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30469 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30470 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30471 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30472 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30473 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30474 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30475 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30476 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30477 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30478 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30479 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30480 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30481 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30482 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30483 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30484 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30485 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30486 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30487 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30488 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30489 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30490 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30491 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30492 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30493 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30494 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30495 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30496 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30497 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30498 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30499 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30500 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30501 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30502 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30503 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30504 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30505 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30506 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30507 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30508 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30509 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30510 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30511 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30512 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30513 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30514 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30515 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30516 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30517 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30518 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30519 25432 2019-11-14 10:18:26 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30520 25432 2019-11-14 10:18:26 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30521 25433 2019-11-14 10:18:26 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30522 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30523 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30524 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30525 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30526 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30527 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30528 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30529 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30530 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30531 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30532 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30533 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30534 25433 2019-11-14 10:18:26 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:26 +30535 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30536 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30537 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30538 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30539 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30540 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30541 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30542 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30543 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30544 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30545 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30546 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30547 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30548 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30549 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30550 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30551 25433 2019-11-14 10:18:27 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30553 25431 2019-11-14 10:18:27 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30554 25431 2019-11-14 10:18:27 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30555 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30556 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30557 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30558 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30559 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30560 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30561 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30562 25431 2019-11-14 10:18:27 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30563 25431 2019-11-14 10:18:27 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30564 25431 2019-11-14 10:18:27 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30565 25431 2019-11-14 10:18:27 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30566 25431 2019-11-14 10:18:27 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30567 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30568 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30569 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30570 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30571 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30572 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30573 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30574 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30575 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30576 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30577 25431 2019-11-14 10:18:27 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30578 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30579 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30580 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30581 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30582 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30583 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30584 25431 2019-11-14 10:18:27 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30585 25431 2019-11-14 10:18:27 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30586 25431 2019-11-14 10:18:27 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30587 25431 2019-11-14 10:18:27 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30588 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30589 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30590 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30591 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30592 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30593 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30594 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30595 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30596 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30597 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30598 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30599 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30600 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30601 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30602 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30603 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30604 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30605 25431 2019-11-14 10:18:27 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30606 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30607 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30608 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30609 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30610 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30611 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30612 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30613 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30614 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30615 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30616 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30617 25431 2019-11-14 10:18:27 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30618 25431 2019-11-14 10:18:27 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30619 25431 2019-11-14 10:18:27 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:27 +30620 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30621 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30622 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30623 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30624 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30625 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30626 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30627 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30628 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30629 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30630 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30631 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30632 25431 2019-11-14 10:18:28 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30633 25431 2019-11-14 10:18:28 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30634 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30635 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30636 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30637 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30638 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30639 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30641 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30642 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30643 25431 2019-11-14 10:18:28 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30644 25431 2019-11-14 10:18:28 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30645 25431 2019-11-14 10:18:28 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30646 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30647 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30648 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30649 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30650 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30651 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30652 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30653 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30654 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30655 25431 2019-11-14 10:18:28 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30656 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30657 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30658 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30659 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30660 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30661 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30662 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30663 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30664 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30665 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30666 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30667 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30668 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30669 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30670 25431 2019-11-14 10:18:28 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30671 25431 2019-11-14 10:18:28 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30672 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30673 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30674 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30675 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30676 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30677 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30678 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30679 25431 2019-11-14 10:18:28 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30680 25431 2019-11-14 10:18:28 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30681 25431 2019-11-14 10:18:28 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30682 25431 2019-11-14 10:18:28 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30683 25431 2019-11-14 10:18:28 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30684 25432 2019-11-14 10:18:28 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30685 25432 2019-11-14 10:18:28 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30686 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30687 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30688 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30689 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30690 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30691 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30692 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30693 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30694 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30695 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30696 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30697 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30698 25432 2019-11-14 10:18:28 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30699 25432 2019-11-14 10:18:28 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30700 25432 2019-11-14 10:18:28 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30701 25432 2019-11-14 10:18:28 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30702 25432 2019-11-14 10:18:28 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30703 25432 2019-11-14 10:18:28 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:28 +30704 25432 2019-11-14 10:18:29 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30705 25432 2019-11-14 10:18:29 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30706 25432 2019-11-14 10:18:29 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30707 25432 2019-11-14 10:18:29 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30708 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30709 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30710 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30711 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30712 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30713 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30714 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30715 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30716 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30717 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30718 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30719 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30720 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30721 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30722 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30723 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30724 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30725 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30726 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30727 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30728 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30729 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30730 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30731 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30732 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30733 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30734 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30735 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30736 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30737 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30738 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30739 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30740 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30741 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30742 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30743 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30744 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30745 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30746 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30747 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30748 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30749 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30750 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30751 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30752 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30753 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30754 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30755 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30756 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30757 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30758 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30759 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30760 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30761 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30762 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30763 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30764 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30765 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30766 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30767 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30768 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30769 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30770 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30771 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30772 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30773 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30774 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30775 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30776 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30777 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30778 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30779 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30780 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30781 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30782 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30783 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30784 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30785 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30786 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30787 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30788 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30789 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30790 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30791 25432 2019-11-14 10:18:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:29 +30792 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30793 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30794 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30795 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30796 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30797 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30798 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30799 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30800 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30801 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30802 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30803 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30804 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30805 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30806 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30807 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30808 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30809 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30810 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30811 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30812 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30813 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30814 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30815 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30816 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30817 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30818 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30819 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30820 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30821 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30822 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30823 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30824 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30825 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30826 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30827 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30828 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30829 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30830 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30831 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30832 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30833 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30834 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30835 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30836 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30837 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30838 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30839 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30840 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30841 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30842 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30843 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30844 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30845 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30846 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30847 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30848 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30849 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30850 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30851 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30852 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30853 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30854 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30855 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30856 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30857 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30858 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30859 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30860 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30861 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30862 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30863 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30864 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30865 25432 2019-11-14 10:18:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30866 25432 2019-11-14 10:18:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30867 25432 2019-11-14 10:18:30 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30868 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30869 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30870 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30871 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30872 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30873 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30874 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30875 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30876 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30877 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30878 25432 2019-11-14 10:18:30 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:30 +30879 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30880 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30881 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30882 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30883 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30884 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30885 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30886 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30887 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30888 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30889 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30890 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30891 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30892 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30893 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30894 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30895 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30896 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30897 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30898 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30899 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30900 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30901 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30902 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30903 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30904 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30905 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30906 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30907 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30908 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30909 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30910 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30911 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30912 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30913 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30914 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30915 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30916 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30917 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30918 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30919 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30920 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30921 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30922 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30923 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30924 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30925 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30926 25432 2019-11-14 10:18:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30927 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30928 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30929 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30930 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30931 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30932 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30933 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30934 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30935 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30936 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30937 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30938 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30939 25434 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30941 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30942 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30943 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30944 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30945 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30946 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30947 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30948 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30949 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30950 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30951 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30952 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30953 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30954 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30955 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30956 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30957 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30958 25430 2019-11-14 10:18:31 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30959 25430 2019-11-14 10:18:31 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30960 25430 2019-11-14 10:18:31 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30961 25430 2019-11-14 10:18:31 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30962 25430 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30963 25430 2019-11-14 10:18:31 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:31 +30964 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30965 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30966 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30967 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30968 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30969 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +32827 25433 2019-11-14 10:18:53 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +30970 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30971 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30972 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30973 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30974 25430 2019-11-14 10:18:32 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30975 25430 2019-11-14 10:18:32 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30976 25430 2019-11-14 10:18:32 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30977 25430 2019-11-14 10:18:32 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30978 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30979 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30980 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30981 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30982 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30983 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30984 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30985 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30986 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30987 25430 2019-11-14 10:18:32 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30988 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30989 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30990 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30991 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30992 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30993 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30994 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30995 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30996 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30997 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30998 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +30999 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31000 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31001 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31002 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31003 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31004 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31005 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31006 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31007 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31008 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31009 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31010 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31011 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31012 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31013 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31014 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31015 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31016 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31017 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31018 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31019 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31020 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31021 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31022 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31023 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31024 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31025 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31026 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31027 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31028 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31029 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31030 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31031 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31032 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31033 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31034 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31035 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31036 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31037 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31038 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31039 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31040 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31041 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31042 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31043 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31044 25430 2019-11-14 10:18:32 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31045 25430 2019-11-14 10:18:32 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31046 25430 2019-11-14 10:18:32 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31047 25430 2019-11-14 10:18:32 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31048 25430 2019-11-14 10:18:32 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31049 25430 2019-11-14 10:18:32 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31050 25430 2019-11-14 10:18:32 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:18:32 +31051 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31052 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31053 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31054 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31055 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31056 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31057 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31058 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31059 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31060 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31061 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31062 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31063 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31064 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31065 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31066 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31067 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31068 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31069 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31070 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31071 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31072 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31073 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31074 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31075 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31076 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31077 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31078 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31079 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31080 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31081 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31082 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31083 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31084 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31085 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31086 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31087 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31088 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31089 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31090 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31091 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31092 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31093 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31094 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31095 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31096 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31097 25430 2019-11-14 10:18:33 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31098 25430 2019-11-14 10:18:33 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31099 25430 2019-11-14 10:18:33 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31100 25430 2019-11-14 10:18:33 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31101 25430 2019-11-14 10:18:33 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31102 25430 2019-11-14 10:18:33 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31103 25430 2019-11-14 10:18:33 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31104 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31105 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31106 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31107 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31108 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31109 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31110 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31111 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31112 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31113 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31114 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31115 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31116 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31117 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31118 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31119 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31120 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31121 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31122 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31123 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31124 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31125 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31126 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31127 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31128 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31129 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31130 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31131 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31132 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31133 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31134 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31135 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31136 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31137 25430 2019-11-14 10:18:33 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:33 +31138 25430 2019-11-14 10:18:34 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31140 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31141 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31142 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31143 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31144 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31145 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31146 25430 2019-11-14 10:18:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31147 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31148 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31149 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31150 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31151 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31152 25430 2019-11-14 10:18:34 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31153 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31154 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31155 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31156 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31157 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31158 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31159 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31160 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31161 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31162 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31163 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31164 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31165 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31166 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31167 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31168 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31169 25430 2019-11-14 10:18:34 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31170 25430 2019-11-14 10:18:34 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31171 25430 2019-11-14 10:18:34 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31172 25430 2019-11-14 10:18:34 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31173 25430 2019-11-14 10:18:34 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31175 25430 2019-11-14 10:18:34 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31176 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31177 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31178 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31179 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31180 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31181 25430 2019-11-14 10:18:34 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31183 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31184 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31185 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31186 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31187 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31188 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31189 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31190 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31191 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31192 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31193 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31194 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31195 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31196 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31197 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31198 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31199 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31200 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31201 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31202 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31203 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31204 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31205 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31206 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31207 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31208 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31209 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31210 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31211 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31212 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31213 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31214 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31215 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31216 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31217 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31218 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31219 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31220 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31221 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31222 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31223 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31224 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31225 25430 2019-11-14 10:18:34 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:18:34 +31226 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31227 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31228 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31229 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31230 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31231 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31232 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31233 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31234 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31235 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31236 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31237 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31238 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31239 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31240 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31241 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31242 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +33216 25434 2019-11-14 10:18:58 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +31243 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31244 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31245 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31246 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31247 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31248 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31249 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31250 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31251 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31252 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31253 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31254 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31255 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31256 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31257 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31258 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31259 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31260 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31261 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31262 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31263 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31264 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31265 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31266 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31267 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31268 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31269 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31270 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31271 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31272 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31273 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31274 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31275 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31276 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31277 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31278 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31279 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31280 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31281 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31282 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31283 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31284 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31285 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31286 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31287 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31288 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31289 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31290 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31291 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31292 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31293 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31294 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31295 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31296 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31297 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31298 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31299 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31300 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31301 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31302 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31303 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31304 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31305 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31306 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31307 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31308 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31309 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31310 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31311 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31312 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31313 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31314 25430 2019-11-14 10:18:35 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:35 +31315 25430 2019-11-14 10:18:36 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31316 25430 2019-11-14 10:18:36 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31317 25430 2019-11-14 10:18:36 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31318 25430 2019-11-14 10:18:36 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31319 25430 2019-11-14 10:18:36 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31320 25430 2019-11-14 10:18:36 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31321 25430 2019-11-14 10:18:36 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31322 25430 2019-11-14 10:18:36 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31323 25430 2019-11-14 10:18:36 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31324 25430 2019-11-14 10:18:36 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31325 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31326 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31327 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31328 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31329 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31330 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31331 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31332 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31333 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31334 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31335 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31336 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31337 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31338 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31339 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31340 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31341 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31342 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31343 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31344 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31345 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31346 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31347 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31348 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31349 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31350 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31351 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31352 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31353 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31354 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31355 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31356 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31357 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31358 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31359 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31360 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31361 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31362 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31363 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31364 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31365 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31366 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31367 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31368 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31369 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31370 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31371 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31372 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31373 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31374 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31375 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31376 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31377 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31378 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31379 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31380 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31381 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31382 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31383 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31384 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31385 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31386 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31387 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31388 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31389 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31390 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31391 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31392 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31393 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31394 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31395 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31396 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31397 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31398 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31399 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31400 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31401 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31402 25430 2019-11-14 10:18:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:18:36 +31403 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31404 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31405 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31406 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31407 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31408 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31409 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31410 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31411 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31412 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31413 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31414 25430 2019-11-14 10:18:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31416 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31417 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31418 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31419 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31420 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31421 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31422 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31423 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31424 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31425 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31426 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31427 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31428 25434 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31429 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31430 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31431 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31432 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31433 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31434 25430 2019-11-14 10:18:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31435 25430 2019-11-14 10:18:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31436 25430 2019-11-14 10:18:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31437 25430 2019-11-14 10:18:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31438 25430 2019-11-14 10:18:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31439 25430 2019-11-14 10:18:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31440 25430 2019-11-14 10:18:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31441 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31442 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31443 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31444 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31445 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31446 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31447 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31448 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31449 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31485 25430 2019-11-14 10:18:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31450 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31451 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31452 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31453 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31454 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31455 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31456 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31457 25430 2019-11-14 10:18:37 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31458 25430 2019-11-14 10:18:37 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31459 25430 2019-11-14 10:18:37 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31460 25430 2019-11-14 10:18:37 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31461 25430 2019-11-14 10:18:37 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31462 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31463 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31464 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31465 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31466 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31467 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31468 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31469 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31470 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31471 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31472 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31473 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31474 25430 2019-11-14 10:18:37 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31475 25430 2019-11-14 10:18:37 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31476 25430 2019-11-14 10:18:37 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31477 25430 2019-11-14 10:18:37 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:37 +31478 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31479 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31480 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31481 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31482 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31483 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31484 25430 2019-11-14 10:18:38 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31486 25430 2019-11-14 10:18:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31487 25430 2019-11-14 10:18:38 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31488 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31489 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31490 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31491 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31492 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31493 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31494 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31495 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31496 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31497 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31498 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31499 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31500 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31501 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31502 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31503 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31504 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31505 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31506 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31507 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31508 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31509 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31510 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31511 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31512 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31513 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31514 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31515 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31516 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31517 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31518 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31519 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31520 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31521 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31522 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31523 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31524 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31525 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31526 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31527 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31528 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31529 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31530 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31531 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31532 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31533 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31534 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31535 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31536 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31537 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31538 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31539 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31540 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31541 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31542 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31543 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31544 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31545 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31546 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31547 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31548 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31549 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31550 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31551 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31552 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31553 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31554 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31555 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31556 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31557 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31558 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31559 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31560 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31561 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31562 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31563 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31564 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31565 25430 2019-11-14 10:18:38 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:18:38 +31566 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31567 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31568 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31569 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31570 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31571 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31572 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31573 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31574 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31575 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31576 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31577 25430 2019-11-14 10:18:39 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31578 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31579 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31580 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31581 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31582 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31583 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31584 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31585 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31586 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31613 25430 2019-11-14 10:18:39 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31587 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31588 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31589 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31590 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31591 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31592 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31593 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31594 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31595 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31596 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31597 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31598 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31599 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31600 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31601 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31602 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31603 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31604 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31605 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31606 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31607 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31608 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31609 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31610 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31611 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31612 25430 2019-11-14 10:18:39 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31614 25430 2019-11-14 10:18:39 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31615 25430 2019-11-14 10:18:39 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31616 25430 2019-11-14 10:18:39 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31617 25430 2019-11-14 10:18:39 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31618 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31619 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31620 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31621 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31622 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31623 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31624 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31625 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31626 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31627 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31628 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31629 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31630 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31631 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31632 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31633 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31634 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31635 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31636 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31637 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31638 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31639 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31640 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31641 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31642 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31643 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31644 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31645 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31646 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31647 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31648 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31649 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31650 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31651 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31652 25430 2019-11-14 10:18:39 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:18:39 +31653 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31654 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31655 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31656 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31657 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31658 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31659 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31660 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31661 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31662 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31663 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31664 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31665 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31666 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31667 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31668 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31669 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31670 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31671 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31672 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31673 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31674 25430 2019-11-14 10:18:40 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31675 25430 2019-11-14 10:18:40 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31676 25430 2019-11-14 10:18:40 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31677 25430 2019-11-14 10:18:40 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31679 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31680 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31681 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31682 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31683 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31684 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31685 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31686 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31687 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31688 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31689 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31690 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31691 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31692 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31693 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31694 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31695 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31696 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31697 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31698 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31699 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31700 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31701 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31702 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31703 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31704 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31705 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31706 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31707 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31708 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31709 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31710 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31711 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31712 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31713 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31714 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31715 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31716 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31717 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31718 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31719 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31720 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31721 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31722 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31723 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31724 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31725 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31726 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31727 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31728 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31729 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31730 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31731 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31732 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31733 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31734 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31735 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31736 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31737 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31738 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31739 25430 2019-11-14 10:18:40 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:40 +31740 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31741 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31742 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31743 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31744 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31745 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31746 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31747 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31748 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31749 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31750 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31751 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31752 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31753 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31754 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31755 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31756 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31757 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31758 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31759 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31760 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31761 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31762 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31763 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31764 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31765 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31766 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31767 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31768 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31769 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31770 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31771 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31772 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31773 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31774 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31775 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31776 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31777 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31778 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31779 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31780 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31781 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31782 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31783 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31784 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31785 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31786 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31787 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31788 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31789 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31892 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31790 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31791 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31792 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31793 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31794 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31795 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31796 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31797 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31798 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31799 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31800 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31801 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31802 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31803 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31804 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31805 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31806 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31807 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31808 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31809 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31810 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31811 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31812 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31813 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31814 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31815 25430 2019-11-14 10:18:41 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31816 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31817 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31818 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31819 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31820 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31821 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31822 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31823 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31824 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31825 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31826 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31827 25430 2019-11-14 10:18:41 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:41 +31828 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31829 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31830 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31831 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31832 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31833 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31834 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31835 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31836 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31837 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31838 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31839 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31840 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31841 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31842 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31843 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31844 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31845 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31846 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31847 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31848 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31849 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31850 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31851 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31852 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31853 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31854 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31855 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31856 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31857 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31858 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31859 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31860 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31861 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31862 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31863 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31864 25430 2019-11-14 10:18:42 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31866 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31867 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31868 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31869 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31870 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31871 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31872 25430 2019-11-14 10:18:42 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31873 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31874 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31875 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31876 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31877 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31878 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31879 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31880 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31881 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31882 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31883 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31884 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31885 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31886 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31887 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31888 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31889 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31890 25430 2019-11-14 10:18:42 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31891 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31934 25433 2019-11-14 10:18:43 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31893 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31894 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31895 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31896 25430 2019-11-14 10:18:42 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31897 25430 2019-11-14 10:18:42 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31898 25430 2019-11-14 10:18:42 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31899 25430 2019-11-14 10:18:42 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31900 25430 2019-11-14 10:18:42 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31901 25430 2019-11-14 10:18:42 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31902 25430 2019-11-14 10:18:42 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31903 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31904 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31905 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31906 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31907 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31908 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31909 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31910 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31911 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31912 25433 2019-11-14 10:18:42 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:42 +31913 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31914 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31915 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31916 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31917 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31918 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31919 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31920 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31921 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31922 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31923 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31924 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31925 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31926 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31927 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31928 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31929 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31930 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31931 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31932 25433 2019-11-14 10:18:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31933 25433 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31935 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31936 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31937 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31938 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31939 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31940 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31941 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31942 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31943 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31944 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31945 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31946 25431 2019-11-14 10:18:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31947 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31948 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31949 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31950 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31951 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31952 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31953 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31954 25431 2019-11-14 10:18:43 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31955 25431 2019-11-14 10:18:43 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31956 25431 2019-11-14 10:18:43 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31957 25431 2019-11-14 10:18:43 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31958 25431 2019-11-14 10:18:43 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31959 25431 2019-11-14 10:18:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31960 25431 2019-11-14 10:18:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31961 25431 2019-11-14 10:18:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31962 25431 2019-11-14 10:18:43 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31963 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31964 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31965 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31966 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31967 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31968 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31969 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31970 25431 2019-11-14 10:18:43 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31971 25431 2019-11-14 10:18:43 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31972 25431 2019-11-14 10:18:43 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31973 25431 2019-11-14 10:18:43 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31974 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31975 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31976 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31977 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31978 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31979 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31980 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31981 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31982 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31983 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31984 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31985 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31986 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31987 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31988 25431 2019-11-14 10:18:43 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31989 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31990 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31991 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31992 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31993 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31994 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31995 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31996 25431 2019-11-14 10:18:43 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:43 +31997 25431 2019-11-14 10:18:44 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +31998 25431 2019-11-14 10:18:44 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +31999 25431 2019-11-14 10:18:44 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32000 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32001 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32002 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32003 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32004 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32005 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32006 25431 2019-11-14 10:18:44 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32007 25431 2019-11-14 10:18:44 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32008 25431 2019-11-14 10:18:44 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32009 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32010 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32011 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32012 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32013 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32014 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32015 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32016 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32017 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32018 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32019 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32020 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32021 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32022 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32023 25431 2019-11-14 10:18:44 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32024 25431 2019-11-14 10:18:44 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32025 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32026 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32027 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32028 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32029 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32030 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32031 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32032 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32033 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32034 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32035 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32036 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32037 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32038 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32039 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32040 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32041 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32042 25431 2019-11-14 10:18:44 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32043 25431 2019-11-14 10:18:44 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32044 25431 2019-11-14 10:18:44 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32045 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32046 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32047 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32048 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32049 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32050 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32051 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32052 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32053 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32054 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32055 25431 2019-11-14 10:18:44 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32056 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32057 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32058 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32059 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32060 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32061 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32062 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32063 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32064 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32065 25431 2019-11-14 10:18:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32066 25432 2019-11-14 10:18:44 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32067 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32068 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32069 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32070 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32071 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32072 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32073 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32074 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32075 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32076 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32077 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32078 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32079 25432 2019-11-14 10:18:44 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32080 25432 2019-11-14 10:18:44 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:44 +32081 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32082 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32083 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32084 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32085 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32086 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32087 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32088 25432 2019-11-14 10:18:45 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32089 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32090 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32091 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32092 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32093 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32094 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32095 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32096 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32097 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32098 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32099 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32100 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32101 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32102 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32103 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32104 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32105 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32106 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32107 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32108 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32109 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32110 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32111 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32112 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32113 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32114 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32115 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32116 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32117 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32118 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32119 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32120 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32121 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32122 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32123 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32124 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32125 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32126 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32127 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32128 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32129 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32130 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32131 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32132 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32133 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32134 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32135 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32136 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32137 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32138 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32139 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32140 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32141 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32142 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32143 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32144 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32145 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32146 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32147 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32148 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32149 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32150 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32151 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32152 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32153 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32154 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32155 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32156 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32157 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32158 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32159 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32160 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32161 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32162 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32163 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32164 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32165 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32166 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32167 25432 2019-11-14 10:18:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:45 +32168 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32169 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32170 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32171 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32172 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32173 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32174 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32175 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32176 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32177 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32178 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32179 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32180 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32181 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32182 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32183 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32184 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32185 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32186 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32187 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32188 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32189 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32190 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32191 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32192 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32193 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32194 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32195 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32196 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32197 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32198 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32199 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32200 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32201 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32202 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32203 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32204 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32205 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32206 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32207 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32208 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32209 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32210 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32211 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32212 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32213 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32214 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32215 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32216 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32217 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32218 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32219 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32220 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32221 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32222 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32223 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32224 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32225 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32226 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32227 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32228 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32229 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32262 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32230 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32231 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32232 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32233 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32234 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32235 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32236 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32237 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32238 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32239 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32240 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32241 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32242 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32243 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32244 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32245 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32246 25432 2019-11-14 10:18:46 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32247 25432 2019-11-14 10:18:46 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32248 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32249 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32250 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32251 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32252 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32253 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32254 25432 2019-11-14 10:18:46 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:46 +32255 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32256 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32257 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32258 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32259 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32260 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32261 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32263 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32264 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32265 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32266 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32267 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32268 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32269 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32270 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32271 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32272 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32273 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32274 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32275 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32276 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32277 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32278 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32279 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32280 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32281 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32282 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32283 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32284 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32285 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32286 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32287 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32288 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32289 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32290 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32291 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32292 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32293 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32294 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32295 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32296 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32297 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32298 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32299 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32300 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32301 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32302 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32303 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32304 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32305 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32306 25432 2019-11-14 10:18:47 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32307 25432 2019-11-14 10:18:47 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32308 25432 2019-11-14 10:18:47 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32309 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32310 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32311 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32312 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32313 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32314 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32315 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32316 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32317 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32318 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32319 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32320 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32321 25434 2019-11-14 10:18:47 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32323 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32324 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32325 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32326 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32327 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32328 25430 2019-11-14 10:18:47 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:47 +32329 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32330 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32331 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32332 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32333 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32334 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32335 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32336 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32337 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32338 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32339 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32340 25430 2019-11-14 10:18:48 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32341 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32342 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32343 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32344 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32345 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32346 25430 2019-11-14 10:18:48 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32347 25430 2019-11-14 10:18:48 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32348 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32349 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32350 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32351 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32352 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32353 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32354 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32355 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32356 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32357 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32358 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32359 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32360 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32361 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32362 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32363 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32492 25430 2019-11-14 10:18:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32364 25430 2019-11-14 10:18:48 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32365 25430 2019-11-14 10:18:48 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32366 25430 2019-11-14 10:18:48 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32367 25430 2019-11-14 10:18:48 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32368 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32369 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32370 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32371 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32372 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32373 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32374 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32375 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32376 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32377 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32378 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32379 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32380 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32381 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32382 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32383 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32384 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32385 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32386 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32387 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32388 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32389 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32390 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32391 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32392 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32393 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32394 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32395 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32396 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32397 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32398 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32399 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32400 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32401 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32402 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32403 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32404 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32405 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32406 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32407 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32408 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32409 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32410 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32411 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32412 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32413 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32414 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32415 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32416 25430 2019-11-14 10:18:48 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:48 +32417 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32418 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32419 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32420 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32421 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32422 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32423 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32424 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32425 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32426 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32427 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32428 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32429 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32430 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32431 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32432 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32433 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32434 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32435 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32436 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32437 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32438 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32439 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32440 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32441 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32442 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32443 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32444 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32445 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32446 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32447 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32448 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32449 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32450 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32451 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32452 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32453 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32454 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32455 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32456 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32457 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32458 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32542 25430 2019-11-14 10:18:50 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32459 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32460 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32461 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32462 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32463 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32464 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32465 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32466 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32467 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32468 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32469 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32470 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32471 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32472 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32473 25430 2019-11-14 10:18:49 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32474 25430 2019-11-14 10:18:49 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32475 25430 2019-11-14 10:18:49 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32476 25430 2019-11-14 10:18:49 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32477 25430 2019-11-14 10:18:49 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32478 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32479 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32480 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32481 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32482 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32483 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32484 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32485 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32486 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32487 25430 2019-11-14 10:18:49 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32488 25430 2019-11-14 10:18:49 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32489 25430 2019-11-14 10:18:49 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32490 25430 2019-11-14 10:18:49 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32491 25430 2019-11-14 10:18:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32493 25430 2019-11-14 10:18:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32494 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32495 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32496 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32497 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32498 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32499 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32500 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32501 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32502 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32503 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32504 25430 2019-11-14 10:18:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:49 +32505 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32506 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32507 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32508 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32509 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32510 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32511 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32512 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32513 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32514 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32515 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32516 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32517 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32518 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32519 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32520 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32521 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32522 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32523 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32524 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32525 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32526 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32527 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32528 25430 2019-11-14 10:18:50 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32529 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32530 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32531 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32532 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32533 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32534 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32535 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32536 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32537 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32538 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32539 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32540 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32541 25430 2019-11-14 10:18:50 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32543 25430 2019-11-14 10:18:50 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32545 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32546 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32547 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32548 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32549 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32550 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32551 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32552 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32553 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32554 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32555 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32556 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32557 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32558 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32559 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32560 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32561 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32562 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32563 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32564 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32565 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32566 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32567 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32568 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32569 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32570 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32571 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32572 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32573 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32574 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32575 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32576 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32577 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32578 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32579 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32580 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32581 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32582 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32583 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32584 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32585 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32586 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32587 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32588 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32589 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32590 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32591 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32592 25430 2019-11-14 10:18:50 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:50 +32593 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32594 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32595 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32596 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32597 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32598 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32599 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32600 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32601 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32602 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32603 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32604 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32605 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32606 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32607 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32608 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32609 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32610 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32611 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32612 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32613 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32614 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32615 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32616 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32617 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32618 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32619 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32620 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32621 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32622 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32623 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32624 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32625 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32626 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32627 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32628 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32629 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32630 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32631 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32632 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32633 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32634 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32635 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32636 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32637 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32638 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32639 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32640 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32641 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32642 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32643 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32644 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32645 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32646 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32647 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32648 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32649 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32650 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32651 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32652 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32653 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32654 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32655 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32656 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32657 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32658 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32659 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32660 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32661 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32662 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32663 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32664 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32665 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32666 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32667 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32668 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32669 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32670 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32671 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32672 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32673 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32674 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32675 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32676 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32677 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32678 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32679 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32680 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32681 25430 2019-11-14 10:18:51 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32682 25430 2019-11-14 10:18:51 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:51 +32683 25430 2019-11-14 10:18:52 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32684 25430 2019-11-14 10:18:52 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32685 25430 2019-11-14 10:18:52 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32686 25430 2019-11-14 10:18:52 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32687 25430 2019-11-14 10:18:52 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32688 25430 2019-11-14 10:18:52 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32689 25430 2019-11-14 10:18:52 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32690 25430 2019-11-14 10:18:52 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32692 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32693 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32694 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32695 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32696 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32697 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32698 25430 2019-11-14 10:18:52 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32699 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32700 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32701 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32702 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32703 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32704 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32705 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32706 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32707 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32708 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32709 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32710 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32711 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32712 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32713 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32714 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32715 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32716 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32717 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32718 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32719 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32720 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32721 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32722 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32723 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32724 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32725 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32726 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32727 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32728 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32729 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32730 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32731 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32732 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32733 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32734 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32735 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32736 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32737 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32738 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32739 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32740 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32741 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32742 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32743 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32744 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32745 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32746 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32747 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32748 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32749 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32750 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32751 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32752 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32753 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32754 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32755 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32756 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32757 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32758 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32759 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32760 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32761 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32762 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32763 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32764 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32765 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32766 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32767 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32768 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32769 25430 2019-11-14 10:18:52 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:18:52 +32770 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32771 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32772 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32773 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32774 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32775 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32776 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32777 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32778 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32779 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32780 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32781 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32782 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32783 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32784 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32785 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32786 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32787 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32788 25430 2019-11-14 10:18:53 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32789 25430 2019-11-14 10:18:53 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32790 25430 2019-11-14 10:18:53 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32791 25430 2019-11-14 10:18:53 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32792 25430 2019-11-14 10:18:53 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32793 25430 2019-11-14 10:18:53 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32794 25430 2019-11-14 10:18:53 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32795 25430 2019-11-14 10:18:53 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32796 25430 2019-11-14 10:18:53 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32797 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32798 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32799 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32800 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32801 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32802 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32803 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32804 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32805 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32806 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32807 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +33307 25430 2019-11-14 10:18:59 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +32808 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32809 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32810 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32811 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32812 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32813 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32814 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32815 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32816 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32817 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32818 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32819 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32820 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32821 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32822 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32823 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32824 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32825 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32826 25433 2019-11-14 10:18:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32828 25433 2019-11-14 10:18:53 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32829 25431 2019-11-14 10:18:53 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32830 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32831 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32832 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32833 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32834 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32835 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32836 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32837 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32838 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32839 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32840 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32841 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32842 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +33309 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +32843 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32844 25431 2019-11-14 10:18:53 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32845 25431 2019-11-14 10:18:53 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32846 25431 2019-11-14 10:18:53 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32847 25431 2019-11-14 10:18:53 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32848 25431 2019-11-14 10:18:53 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:53 +32849 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32850 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32851 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32852 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32853 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32854 25431 2019-11-14 10:18:54 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32855 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32856 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32857 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32858 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32859 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32860 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32861 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32862 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32863 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32864 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32865 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32866 25431 2019-11-14 10:18:54 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32867 25431 2019-11-14 10:18:54 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32868 25431 2019-11-14 10:18:54 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32869 25431 2019-11-14 10:18:54 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32870 25431 2019-11-14 10:18:54 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32871 25431 2019-11-14 10:18:54 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32872 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32873 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32874 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32875 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32876 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32877 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32878 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32879 25431 2019-11-14 10:18:54 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32880 25431 2019-11-14 10:18:54 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32881 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32882 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32883 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32884 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32885 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32886 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32887 25431 2019-11-14 10:18:54 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32888 25431 2019-11-14 10:18:54 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32889 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32890 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32891 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32892 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32893 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32894 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32895 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32896 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32897 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32898 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32899 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32900 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32901 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32902 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32903 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32904 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32905 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32906 25431 2019-11-14 10:18:54 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32907 25431 2019-11-14 10:18:54 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32908 25431 2019-11-14 10:18:54 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32909 25431 2019-11-14 10:18:54 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32910 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32911 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32912 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32913 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32914 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32915 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32916 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32917 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32918 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32919 25431 2019-11-14 10:18:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32920 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32921 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32922 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32923 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32924 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32925 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32926 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32927 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32928 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32929 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32930 25431 2019-11-14 10:18:54 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32931 25431 2019-11-14 10:18:54 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32932 25431 2019-11-14 10:18:54 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32933 25431 2019-11-14 10:18:54 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32934 25431 2019-11-14 10:18:54 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32935 25431 2019-11-14 10:18:54 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32936 25431 2019-11-14 10:18:54 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:54 +32937 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32938 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32939 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32940 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32941 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32942 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32943 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32944 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32945 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32946 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32947 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32948 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32949 25431 2019-11-14 10:18:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32950 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32951 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32952 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32953 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32954 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32955 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32956 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32957 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32958 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32959 25431 2019-11-14 10:18:55 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32960 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32961 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32962 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32963 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32964 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32965 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32966 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32967 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32968 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32969 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32970 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32971 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32972 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32973 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32974 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32975 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32976 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32977 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32978 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32979 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32980 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32981 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32982 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32983 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32984 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32985 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32986 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32987 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32988 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32989 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32990 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32991 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32992 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32993 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32994 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32995 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32996 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32997 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32998 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +32999 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33000 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33001 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33002 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33003 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33004 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33005 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33006 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33007 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33008 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33009 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33010 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33011 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33012 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33013 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33014 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33015 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33016 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33017 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33018 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33019 25432 2019-11-14 10:18:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:55 +33020 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33021 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33022 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33023 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33024 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33025 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33026 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33027 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33028 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33029 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33030 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33031 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33032 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33033 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33034 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33035 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33036 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33037 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33038 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33039 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33040 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33041 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33042 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33043 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33044 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33045 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33046 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33047 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33048 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33049 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33050 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33051 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33052 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33053 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33054 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33055 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33056 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33057 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33058 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33059 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33060 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33061 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33062 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33063 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33064 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33065 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33066 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33067 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33068 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33069 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33070 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33071 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33072 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33073 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33074 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33075 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33076 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33077 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33078 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33079 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33080 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33081 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33082 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33083 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33084 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33085 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33086 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33087 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33088 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33089 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33090 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33091 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33092 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33093 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33094 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33095 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33096 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33097 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33098 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33099 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33100 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33101 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33102 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33103 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33104 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33105 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33106 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33107 25432 2019-11-14 10:18:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:56 +33108 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33109 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33110 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33111 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33112 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33113 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33114 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33115 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33116 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33117 25432 2019-11-14 10:18:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33118 25432 2019-11-14 10:18:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33119 25432 2019-11-14 10:18:57 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33120 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33121 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33122 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33123 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33124 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33125 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33126 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33127 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33128 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33129 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33130 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33131 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33132 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33133 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33134 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33135 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33136 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33137 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33138 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33139 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33140 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33141 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33142 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33143 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33144 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33145 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33146 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33147 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33148 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33149 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33150 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33151 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33152 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33153 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33154 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33155 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33156 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33157 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33158 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33159 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33160 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33161 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33162 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33163 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33164 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33165 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33166 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33167 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33168 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33169 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33170 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33171 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33172 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33173 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33174 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33175 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33176 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33177 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33178 25432 2019-11-14 10:18:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33179 25432 2019-11-14 10:18:57 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33180 25432 2019-11-14 10:18:57 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33181 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33182 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33183 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33184 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33185 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33186 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33187 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33188 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33189 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33190 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33191 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33192 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33193 25432 2019-11-14 10:18:57 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:57 +33194 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33195 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33196 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33197 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33198 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33199 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33200 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33201 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33202 25432 2019-11-14 10:18:58 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33203 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33204 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33205 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33206 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33207 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33208 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33209 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33210 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33211 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33212 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33213 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33214 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33215 25434 2019-11-14 10:18:58 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33217 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33218 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33219 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33220 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33221 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33222 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33223 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33224 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33225 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33226 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33227 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33228 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33229 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33230 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33231 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33232 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33233 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33234 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33235 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33236 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33237 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33238 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33239 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33240 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33241 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33242 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33243 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33244 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33245 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33246 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33247 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33248 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33249 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33250 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33251 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33252 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33253 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33254 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33255 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33256 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33257 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33258 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33259 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33260 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33261 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33262 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33263 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33264 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33265 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33266 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33267 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33268 25430 2019-11-14 10:18:58 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:58 +33269 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33270 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33271 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33272 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33273 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33274 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33665 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33275 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33276 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33277 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33278 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33279 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33280 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33281 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33282 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33283 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33284 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33285 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33286 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33287 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33288 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33289 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33290 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33291 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33292 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33293 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33294 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33295 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33296 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33297 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33298 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33299 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33300 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33301 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33302 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33303 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33304 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33305 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33306 25430 2019-11-14 10:18:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33308 25430 2019-11-14 10:18:59 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33310 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33311 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33312 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33313 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33314 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33315 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33316 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33317 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33318 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33319 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33320 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33321 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33322 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33323 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33324 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33325 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33326 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33327 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33328 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33329 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33330 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33331 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33332 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33333 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33334 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33335 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33336 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33337 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33338 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33339 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33340 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33341 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33342 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33343 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33344 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33345 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33346 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33691 25433 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33347 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33348 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33349 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33350 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33351 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33352 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33353 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33354 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33355 25430 2019-11-14 10:18:59 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:18:59 +33356 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33357 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33358 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33359 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33360 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33361 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33362 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33363 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33364 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33365 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33366 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33367 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33368 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33369 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33370 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33371 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33372 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33373 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33374 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33375 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33376 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33377 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33378 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33379 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33380 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33381 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33382 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33383 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33384 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33385 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33386 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33387 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33388 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33389 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33390 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33391 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33392 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33393 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33394 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33395 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33396 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33397 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33398 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33399 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33400 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33401 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33402 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33403 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33404 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33405 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33406 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33407 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33408 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33409 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33410 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33411 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33412 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33413 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33414 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33415 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33416 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33417 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33418 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33419 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33420 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33421 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33422 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33423 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33424 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33425 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33426 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33427 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33428 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33429 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33430 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33431 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33432 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33433 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33434 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33435 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33436 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33437 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33438 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33439 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33440 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33441 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33442 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33443 25430 2019-11-14 10:19:00 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:00 +33444 25430 2019-11-14 10:19:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33445 25430 2019-11-14 10:19:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33446 25430 2019-11-14 10:19:01 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33447 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33448 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33449 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33450 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33451 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33452 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33453 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33454 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33455 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33456 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33457 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33458 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33459 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33460 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33461 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33462 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33463 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33464 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33465 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33466 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33467 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33468 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33469 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33470 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33471 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33472 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33473 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33474 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33475 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33476 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33477 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33478 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33479 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33480 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33481 25430 2019-11-14 10:19:01 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33482 25430 2019-11-14 10:19:01 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33483 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33484 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33485 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33486 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33487 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33488 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33489 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33490 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33491 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33492 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33493 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33494 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33495 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33496 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33497 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33498 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33499 25430 2019-11-14 10:19:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33500 25430 2019-11-14 10:19:01 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33501 25430 2019-11-14 10:19:01 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33502 25430 2019-11-14 10:19:01 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33503 25430 2019-11-14 10:19:01 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33504 25430 2019-11-14 10:19:01 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33505 25430 2019-11-14 10:19:01 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33506 25430 2019-11-14 10:19:01 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33507 25430 2019-11-14 10:19:01 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33508 25430 2019-11-14 10:19:01 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33509 25430 2019-11-14 10:19:01 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33510 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33511 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33512 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33513 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33514 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33515 25430 2019-11-14 10:19:01 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33516 25430 2019-11-14 10:19:01 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33517 25430 2019-11-14 10:19:01 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33518 25430 2019-11-14 10:19:01 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33519 25430 2019-11-14 10:19:01 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33520 25430 2019-11-14 10:19:01 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33521 25430 2019-11-14 10:19:01 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33522 25430 2019-11-14 10:19:01 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33523 25430 2019-11-14 10:19:01 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33524 25430 2019-11-14 10:19:01 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33525 25430 2019-11-14 10:19:01 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33526 25430 2019-11-14 10:19:01 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33527 25430 2019-11-14 10:19:01 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33528 25430 2019-11-14 10:19:01 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33529 25430 2019-11-14 10:19:01 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:01 +33530 25430 2019-11-14 10:19:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33531 25430 2019-11-14 10:19:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33532 25430 2019-11-14 10:19:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33533 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33534 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33535 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33536 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33537 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33538 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33539 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33540 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33541 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33542 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33543 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33544 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33545 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33546 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33547 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33548 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33549 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33550 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33551 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33552 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33553 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33554 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33555 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33556 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33557 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33558 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33559 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33560 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33561 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33562 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33563 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33564 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33565 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33566 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33567 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33568 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33569 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33570 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33571 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33572 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33573 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33574 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33575 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33576 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33577 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33578 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33579 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33580 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33581 25430 2019-11-14 10:19:02 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33582 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33583 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33584 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33585 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33647 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33586 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33587 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33588 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33589 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33590 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33591 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33592 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33593 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33594 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33595 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33596 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33597 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33598 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33599 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33600 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33601 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33602 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33603 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33604 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33605 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33606 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33607 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33608 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33609 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33610 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33611 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33612 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33613 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33614 25430 2019-11-14 10:19:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:19:02 +33615 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33616 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33617 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33618 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33619 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33620 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33621 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33622 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33623 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33624 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33625 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33626 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33627 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33628 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33629 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33630 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33631 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33632 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33633 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33634 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33635 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33636 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33637 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33638 25430 2019-11-14 10:19:03 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33639 25430 2019-11-14 10:19:03 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33640 25430 2019-11-14 10:19:03 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33641 25430 2019-11-14 10:19:03 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33642 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33643 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33644 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33645 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33646 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33648 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33649 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33650 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33651 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33652 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33653 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33654 25430 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33655 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33656 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33657 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33658 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33659 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33660 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33661 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33662 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33663 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33664 25430 2019-11-14 10:19:03 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33666 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33667 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33668 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33669 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33670 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33671 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33672 25430 2019-11-14 10:19:03 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33673 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33674 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33675 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33676 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33677 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33678 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33679 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33680 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33681 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33682 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33683 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33684 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33685 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33686 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33687 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33688 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33689 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33690 25430 2019-11-14 10:19:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33692 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33693 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33694 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33695 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33696 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33697 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33698 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33699 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33700 25433 2019-11-14 10:19:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:19:03 +33701 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33702 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33703 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33704 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33705 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33706 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33707 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33708 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33709 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33710 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33711 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33712 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33713 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33714 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33715 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33716 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33717 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33718 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33719 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33720 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33721 25433 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33722 25433 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33723 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33724 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33725 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33726 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33727 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33728 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33729 25431 2019-11-14 10:19:04 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33730 25431 2019-11-14 10:19:04 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33731 25431 2019-11-14 10:19:04 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33732 25431 2019-11-14 10:19:04 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33733 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33734 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33735 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33736 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33737 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33738 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33739 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33740 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33741 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33742 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33743 25431 2019-11-14 10:19:04 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33744 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33745 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33746 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33747 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33748 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33749 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33750 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33751 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33752 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33753 25431 2019-11-14 10:19:04 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33754 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33755 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +34262 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +33756 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33757 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33758 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33759 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33760 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33761 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33762 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33763 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33764 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33765 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33766 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33767 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33768 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33769 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33770 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33771 25431 2019-11-14 10:19:04 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33772 25431 2019-11-14 10:19:04 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33773 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33774 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33775 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33776 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33777 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33778 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33779 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33780 25431 2019-11-14 10:19:04 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33781 25431 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33782 25431 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33783 25431 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33784 25431 2019-11-14 10:19:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:19:04 +33785 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33786 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33787 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33788 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33789 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33790 25431 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33791 25431 2019-11-14 10:19:05 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33792 25431 2019-11-14 10:19:05 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33793 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33794 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33795 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33796 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33797 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33798 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33799 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33800 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33801 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33802 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33803 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33804 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33805 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33806 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33807 25431 2019-11-14 10:19:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33808 25431 2019-11-14 10:19:05 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33809 25431 2019-11-14 10:19:05 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33810 25431 2019-11-14 10:19:05 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33811 25431 2019-11-14 10:19:05 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33812 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33813 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33814 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33815 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33816 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33817 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33818 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33819 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33820 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33821 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33822 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33823 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33824 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33825 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33826 25431 2019-11-14 10:19:05 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33827 25431 2019-11-14 10:19:05 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33828 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33829 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33830 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33831 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33832 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33833 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33834 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33835 25431 2019-11-14 10:19:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33836 25431 2019-11-14 10:19:05 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33837 25431 2019-11-14 10:19:05 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33838 25431 2019-11-14 10:19:05 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33839 25431 2019-11-14 10:19:05 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33840 25431 2019-11-14 10:19:05 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33841 25431 2019-11-14 10:19:05 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33842 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33843 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33844 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33845 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33846 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33847 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33848 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33849 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33850 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33851 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33852 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33853 25431 2019-11-14 10:19:05 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33854 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33855 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33856 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33857 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33858 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33859 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33860 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33861 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33862 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33927 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33863 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33864 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33865 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33866 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33867 25432 2019-11-14 10:19:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:19:05 +33868 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33869 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33870 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33871 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33872 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33873 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33874 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33875 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33876 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33877 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33878 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33879 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33880 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33881 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33882 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33883 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33884 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33885 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33886 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33887 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33888 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33889 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33890 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33891 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33892 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33893 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33894 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33895 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33896 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33897 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33898 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33899 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33900 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33901 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33902 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33903 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33904 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33905 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33906 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33907 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33908 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33909 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33910 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33911 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33912 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33913 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33914 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33915 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33916 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33917 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33918 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33919 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33920 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33921 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33922 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33923 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33924 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33925 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33926 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33928 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33929 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33930 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33931 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33932 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33933 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33934 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33935 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33936 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33937 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33938 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33939 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33940 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33941 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33942 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33943 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33944 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33945 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33946 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33947 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33948 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33949 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33950 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33951 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33952 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33953 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33954 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33955 25432 2019-11-14 10:19:06 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:06 +33956 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33957 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33958 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34110 25434 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +33959 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33960 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33961 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33962 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33963 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33964 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33965 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33966 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33967 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33968 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33969 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33970 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33971 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33972 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33973 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33974 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33975 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33976 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33977 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33978 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33979 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33980 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33981 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33982 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33983 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33984 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33985 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33986 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33987 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33988 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33989 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33990 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33991 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33992 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33993 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33994 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33995 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33996 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33997 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33998 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +33999 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34000 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34001 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34002 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34003 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34004 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34005 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34006 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34007 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34008 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34009 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34010 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34011 25432 2019-11-14 10:19:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34012 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34013 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34014 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34015 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34016 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34017 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34018 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34019 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34020 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34021 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34114 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34022 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34023 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34024 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34025 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34026 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34027 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34028 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34029 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34030 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34031 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34032 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34033 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34034 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34035 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34036 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34037 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34038 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34039 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34040 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34041 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34042 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34043 25432 2019-11-14 10:19:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:19:07 +34044 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34045 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34046 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34047 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34048 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34049 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34050 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34051 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34052 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34053 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34054 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34055 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34056 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34057 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34058 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34059 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34060 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34061 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34062 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34063 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34064 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34065 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34066 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34067 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34068 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34069 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34070 25432 2019-11-14 10:19:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34071 25432 2019-11-14 10:19:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34072 25432 2019-11-14 10:19:08 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34073 25432 2019-11-14 10:19:08 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34074 25432 2019-11-14 10:19:08 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34075 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34076 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34077 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34078 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34079 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34080 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34081 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34082 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34083 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34084 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34158 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34085 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34086 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34087 25432 2019-11-14 10:19:08 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34088 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34089 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34090 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34091 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34092 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34093 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34094 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34095 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34096 25432 2019-11-14 10:19:08 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:19:08 +34097 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34098 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34099 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34100 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34101 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34102 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34103 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34104 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34105 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34106 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34107 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34108 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34109 25434 2019-11-14 10:54:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34111 25430 2019-11-14 10:54:51 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34112 25430 2019-11-14 10:54:51 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34113 25430 2019-11-14 10:54:51 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34115 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34116 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34117 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34118 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34119 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34120 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34121 25430 2019-11-14 10:54:51 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34122 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34123 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34124 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34125 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34126 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34127 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34128 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34129 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34130 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34131 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34132 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34133 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34134 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34135 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34136 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34137 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34138 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34139 25430 2019-11-14 10:54:51 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34140 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34141 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34142 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34143 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34144 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34145 25430 2019-11-14 10:54:51 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34146 25430 2019-11-14 10:54:51 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34147 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34148 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34149 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34150 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34151 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34152 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34153 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34154 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34155 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34156 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34157 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34159 25430 2019-11-14 10:54:51 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:54:51 +34160 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34161 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34162 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34163 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34164 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34165 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34166 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34167 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34168 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34169 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34170 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34171 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34172 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34173 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34174 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34175 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34176 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34177 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34178 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34179 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34180 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34181 25430 2019-11-14 10:54:52 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34182 25430 2019-11-14 10:54:52 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34183 25430 2019-11-14 10:54:52 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34184 25430 2019-11-14 10:54:52 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34185 25430 2019-11-14 10:54:52 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34186 25430 2019-11-14 10:54:52 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34187 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34188 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34189 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34190 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34191 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34192 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34193 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34194 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34195 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34196 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34197 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34198 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34199 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34200 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34201 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34202 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34203 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34204 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34205 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34206 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34207 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34208 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34209 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34210 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34211 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34212 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34213 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34214 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34215 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34216 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34217 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34218 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34219 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34220 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34221 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34222 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34223 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34224 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34225 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34260 25430 2019-11-14 10:54:53 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34226 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34227 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34228 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34229 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34230 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34231 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34232 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34233 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34234 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34235 25430 2019-11-14 10:54:52 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34236 25430 2019-11-14 10:54:52 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34237 25430 2019-11-14 10:54:52 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34238 25430 2019-11-14 10:54:52 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34239 25430 2019-11-14 10:54:52 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34240 25430 2019-11-14 10:54:52 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34241 25430 2019-11-14 10:54:52 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34242 25430 2019-11-14 10:54:52 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34243 25430 2019-11-14 10:54:52 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34244 25430 2019-11-14 10:54:52 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34245 25430 2019-11-14 10:54:52 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34246 25430 2019-11-14 10:54:52 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34247 25430 2019-11-14 10:54:52 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34248 25430 2019-11-14 10:54:52 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:54:52 +34249 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34250 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34251 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34252 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34253 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34254 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34255 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34256 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34257 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34258 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34259 25430 2019-11-14 10:54:53 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34261 25430 2019-11-14 10:54:53 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34263 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34264 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34265 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34266 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34267 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34268 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34269 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34270 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34271 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34272 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34273 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34274 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34275 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34276 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34277 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34278 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34279 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34280 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34281 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34282 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34283 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34284 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34285 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34286 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34287 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34288 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34289 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34290 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34291 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34292 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34293 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34294 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34295 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34296 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34297 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34298 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34299 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34300 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34301 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34302 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34303 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34304 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34305 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34306 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34307 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34308 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34309 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34310 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34311 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34312 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34313 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34314 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34315 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34316 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34317 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34318 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34319 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34320 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34321 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34322 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34323 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34324 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34325 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34326 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34327 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34328 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34329 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34330 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34331 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34332 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34615 25433 2019-11-14 10:54:57 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34333 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34334 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34335 25430 2019-11-14 10:54:53 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:54:53 +34336 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34337 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34338 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34339 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34340 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34341 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34342 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34343 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34344 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34345 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34346 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34347 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34348 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34349 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34350 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34351 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34352 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34353 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34354 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34355 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34356 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34357 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34358 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34359 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34360 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34361 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34362 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34363 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34364 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34365 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34366 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34367 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34368 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34369 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34370 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34371 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34372 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34373 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34374 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34375 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34376 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34377 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34378 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34379 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34380 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34381 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34382 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34383 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34384 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34385 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34386 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34387 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34388 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34389 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34390 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34391 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34392 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34393 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34394 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34395 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34396 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34397 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34398 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34399 25430 2019-11-14 10:54:54 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34400 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +35004 25434 2019-11-14 10:55:01 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34401 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34402 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34403 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34404 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34405 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34406 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34407 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34408 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34409 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34410 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34411 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34412 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34413 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34414 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34415 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34416 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34417 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34418 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34419 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34420 25430 2019-11-14 10:54:54 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:54:54 +34421 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34422 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34423 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34424 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34425 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34426 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34427 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34428 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34429 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34430 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34431 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34462 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34432 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34433 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34434 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34435 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34436 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34437 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34438 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34439 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34440 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34441 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34442 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34443 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34444 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34445 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34446 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34447 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34448 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34449 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34450 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34451 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34452 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34453 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34454 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34455 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34456 25430 2019-11-14 10:54:55 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34457 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34458 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34459 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34460 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34461 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34463 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34464 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34465 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34466 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34467 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34468 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34469 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34470 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34471 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34472 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34473 25430 2019-11-14 10:54:55 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34474 25430 2019-11-14 10:54:55 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34475 25430 2019-11-14 10:54:55 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34476 25430 2019-11-14 10:54:55 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34477 25430 2019-11-14 10:54:55 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34478 25430 2019-11-14 10:54:55 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34479 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34480 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34481 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34482 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34483 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34484 25430 2019-11-14 10:54:55 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34485 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34486 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34487 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34488 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34489 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34490 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34491 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34492 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34493 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34494 25430 2019-11-14 10:54:55 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34495 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34496 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34497 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34498 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34499 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34500 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34501 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34502 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34503 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34504 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34505 25430 2019-11-14 10:54:55 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:55 +34506 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34507 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34508 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34509 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34510 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34511 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34512 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34513 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34514 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34515 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34516 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34517 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34518 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34519 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34520 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34521 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34522 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34523 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34524 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34525 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34526 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34527 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34528 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34529 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34530 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34531 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34532 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34533 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34534 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34535 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34536 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34537 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34538 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34539 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34540 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34541 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34542 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34543 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34544 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34545 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34546 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34547 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34548 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34549 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34550 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34551 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34552 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34553 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34554 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34555 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34556 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34557 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34558 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34559 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34560 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34561 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34562 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34563 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34564 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34565 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34566 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34567 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34568 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34569 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34570 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34571 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34572 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34573 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34574 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34575 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34576 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34577 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34578 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34579 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34580 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34581 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34582 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34583 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34584 25430 2019-11-14 10:54:56 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34585 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34586 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34587 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34588 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34589 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34590 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34591 25433 2019-11-14 10:54:56 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:56 +34592 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34593 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34594 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34595 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34596 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34597 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34598 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34599 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34600 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34601 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34602 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34603 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34604 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34605 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34606 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34607 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34608 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34609 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34610 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34611 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34612 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34613 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34614 25433 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34616 25433 2019-11-14 10:54:57 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34617 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34618 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34619 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34620 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34621 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34622 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34623 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34624 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34625 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34626 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34627 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34628 25431 2019-11-14 10:54:57 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34629 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34630 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34631 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34632 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34633 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34634 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34635 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34636 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34637 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34638 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34639 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34640 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34641 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34642 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34643 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34644 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34645 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34646 25431 2019-11-14 10:54:57 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34647 25431 2019-11-14 10:54:57 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34648 25431 2019-11-14 10:54:57 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34649 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34650 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34651 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34652 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34653 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34654 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34655 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34656 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34657 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34658 25431 2019-11-14 10:54:57 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34659 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34660 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34661 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34662 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34663 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34664 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34665 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34666 25431 2019-11-14 10:54:57 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34667 25431 2019-11-14 10:54:57 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34668 25431 2019-11-14 10:54:57 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34669 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34670 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34671 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34672 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34673 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34674 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34675 25431 2019-11-14 10:54:57 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:57 +34676 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34677 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34678 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34679 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34680 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34681 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34682 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34683 25431 2019-11-14 10:54:58 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34684 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34685 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34686 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34687 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34688 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34689 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34690 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34691 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34692 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34693 25431 2019-11-14 10:54:58 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34694 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34695 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34696 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34697 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34698 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34699 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34700 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34701 25431 2019-11-14 10:54:58 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34702 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34703 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34704 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34705 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34706 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34707 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34708 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34709 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34710 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34711 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34712 25431 2019-11-14 10:54:58 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34713 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34714 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34715 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34716 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34717 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34718 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34719 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34720 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34721 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34722 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34723 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34724 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34725 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34726 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34727 25431 2019-11-14 10:54:58 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34728 25431 2019-11-14 10:54:58 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34729 25431 2019-11-14 10:54:58 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34730 25431 2019-11-14 10:54:58 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34731 25431 2019-11-14 10:54:58 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34732 25431 2019-11-14 10:54:58 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34733 25431 2019-11-14 10:54:58 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34734 25431 2019-11-14 10:54:58 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34735 25431 2019-11-14 10:54:58 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34736 25431 2019-11-14 10:54:58 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34737 25431 2019-11-14 10:54:58 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34738 25431 2019-11-14 10:54:58 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34739 25431 2019-11-14 10:54:58 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34740 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34741 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34742 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34743 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34744 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34745 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34746 25431 2019-11-14 10:54:58 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34747 25431 2019-11-14 10:54:58 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34748 25432 2019-11-14 10:54:58 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34749 25432 2019-11-14 10:54:58 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34750 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34751 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34752 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34753 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34754 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34755 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34756 25432 2019-11-14 10:54:58 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:58 +34757 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34758 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34759 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34760 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34761 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34762 25432 2019-11-14 10:54:59 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34763 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34764 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34765 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34766 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34767 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34768 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34769 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34770 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34771 25432 2019-11-14 10:54:59 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34772 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34773 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34774 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34775 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34776 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34777 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34778 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34779 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34780 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34781 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34782 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34783 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34784 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34785 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34786 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34787 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34788 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34789 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34790 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34791 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34792 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34793 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34794 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34795 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34796 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34797 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34798 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34799 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34800 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34801 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34802 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34803 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34804 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34805 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34806 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34807 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34808 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34809 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34810 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34811 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34812 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34813 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34814 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34815 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34816 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34817 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34818 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34819 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34820 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34821 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34822 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34823 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34824 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34825 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34826 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34827 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34828 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34829 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34830 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34831 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34832 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34833 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34834 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34835 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34836 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34837 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34838 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34839 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34840 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34841 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34842 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34843 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34844 25432 2019-11-14 10:54:59 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:54:59 +34845 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34846 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34847 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34848 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34849 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34850 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34851 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34852 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34853 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34854 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34855 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34856 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34857 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34858 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34859 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34860 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34861 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34862 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34863 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34864 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34865 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34866 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34867 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34868 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34869 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34870 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34871 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34872 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +35005 25430 2019-11-14 10:55:01 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34873 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34874 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34875 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34876 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34877 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34878 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34879 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34880 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34881 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34882 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34883 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34884 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34885 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34886 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34887 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34888 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34889 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34890 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34891 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34892 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34893 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34894 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34895 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34896 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34897 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34898 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34899 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34900 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34901 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34902 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34903 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34904 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34905 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34906 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34907 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34908 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34909 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34910 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34911 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34912 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34913 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34914 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34915 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34916 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34917 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34918 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34919 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34920 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34921 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34922 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34923 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34924 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34925 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34926 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34927 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34928 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34929 25432 2019-11-14 10:55:00 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34930 25432 2019-11-14 10:55:00 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34931 25432 2019-11-14 10:55:00 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34932 25432 2019-11-14 10:55:00 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:00 +34933 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34934 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34935 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34936 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34937 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34938 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34939 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34940 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34941 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34942 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34943 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34944 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34945 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34946 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34947 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34948 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34949 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34950 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34951 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34952 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34953 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34954 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34955 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34956 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34957 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34958 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34959 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34960 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34961 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34962 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34963 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34964 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34965 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34966 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34967 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34968 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34969 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34970 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34971 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34972 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34973 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34974 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34975 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34976 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34977 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34978 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34979 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34980 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34981 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34982 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34983 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34984 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34985 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34986 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34987 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34988 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34989 25432 2019-11-14 10:55:01 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34990 25432 2019-11-14 10:55:01 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34991 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34992 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34993 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34994 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34995 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34996 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34997 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34998 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +34999 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +35000 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +35001 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +35002 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +35003 25434 2019-11-14 10:55:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:01 +35006 25430 2019-11-14 10:55:02 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35007 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35008 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35009 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35010 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35011 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35012 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35013 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35014 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35015 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35016 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35017 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35018 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35019 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35020 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35021 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35022 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35023 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35024 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35025 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35026 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35027 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35028 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35029 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35030 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35031 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35032 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35033 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35099 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35034 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35035 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35036 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35037 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35038 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35039 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35040 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35041 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35042 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35043 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35044 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35045 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35046 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35047 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35048 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35049 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35050 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35051 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35052 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35053 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35054 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35055 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35056 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35057 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35058 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35059 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35060 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35061 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35062 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35063 25430 2019-11-14 10:55:02 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35064 25430 2019-11-14 10:55:02 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35065 25430 2019-11-14 10:55:02 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35066 25430 2019-11-14 10:55:02 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35067 25430 2019-11-14 10:55:02 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35068 25430 2019-11-14 10:55:02 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35069 25430 2019-11-14 10:55:02 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35070 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35071 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35072 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35073 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35074 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35075 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35076 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35077 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35078 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35079 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35080 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35081 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35082 25430 2019-11-14 10:55:02 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35083 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35084 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35085 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35086 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35087 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35088 25430 2019-11-14 10:55:02 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35089 25430 2019-11-14 10:55:02 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35090 25430 2019-11-14 10:55:02 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35091 25430 2019-11-14 10:55:02 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35092 25430 2019-11-14 10:55:02 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:02 +35093 25430 2019-11-14 10:55:03 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35094 25430 2019-11-14 10:55:03 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35095 25430 2019-11-14 10:55:03 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35096 25430 2019-11-14 10:55:03 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35097 25430 2019-11-14 10:55:03 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35098 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35100 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35101 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35102 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35103 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35104 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35105 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35106 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35107 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35108 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35109 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35110 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35111 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35112 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35113 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35114 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35115 25430 2019-11-14 10:55:03 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35116 25430 2019-11-14 10:55:03 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35117 25430 2019-11-14 10:55:03 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35118 25430 2019-11-14 10:55:03 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35119 25430 2019-11-14 10:55:03 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35120 25430 2019-11-14 10:55:03 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35121 25430 2019-11-14 10:55:03 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35122 25430 2019-11-14 10:55:03 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35123 25430 2019-11-14 10:55:03 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35124 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35125 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35126 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35127 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35128 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35129 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35130 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35131 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35132 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35133 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35134 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35135 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35136 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35137 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35138 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35139 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35140 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35141 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35142 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35143 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35144 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35145 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35146 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35147 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35148 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35149 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35150 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35151 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35152 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35153 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35154 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35155 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35156 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35157 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35158 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35159 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35160 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35161 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35162 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35163 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35164 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35165 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35166 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35167 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35168 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35169 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35284 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35170 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35171 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35172 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35173 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35174 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35175 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35176 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35177 25430 2019-11-14 10:55:03 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:03 +35178 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35179 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35180 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35181 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35182 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35183 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35184 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35185 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35186 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35187 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35188 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35189 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35190 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35191 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35192 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35193 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35194 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35195 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35196 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35197 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35198 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35199 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35200 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35201 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35202 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35203 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35204 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35205 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35206 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35207 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35208 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35209 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35210 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35211 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35212 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35213 25430 2019-11-14 10:55:04 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35214 25430 2019-11-14 10:55:04 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35215 25430 2019-11-14 10:55:04 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35216 25430 2019-11-14 10:55:04 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35217 25430 2019-11-14 10:55:04 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35218 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35219 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35220 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35221 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35222 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35223 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35224 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35225 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35226 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35227 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35228 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35229 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35230 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35231 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35232 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35233 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35234 25430 2019-11-14 10:55:04 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35235 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35236 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35237 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35238 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35239 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35240 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35241 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35242 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35243 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35244 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35245 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35246 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35247 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35248 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35249 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35250 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35251 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35252 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35253 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35254 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35255 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35256 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35257 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35258 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35259 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35260 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35261 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35262 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35263 25430 2019-11-14 10:55:04 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:04 +35264 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35265 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35266 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35267 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35268 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35304 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35269 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35270 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35271 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35272 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35273 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35274 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35275 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35276 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35277 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35278 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35279 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35280 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35281 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35282 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35283 25430 2019-11-14 10:55:05 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35285 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35286 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35287 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35288 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35289 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35290 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35291 25430 2019-11-14 10:55:05 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35292 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35293 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35294 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35295 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35296 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35297 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35298 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35299 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35300 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35301 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35302 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35303 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35327 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35305 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35306 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35307 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35308 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35309 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35310 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35311 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35312 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35313 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35314 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35315 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35316 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35317 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35318 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35319 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35320 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35321 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35322 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35323 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35324 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35325 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35326 25430 2019-11-14 10:55:05 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35328 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35329 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35330 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35331 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35332 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35333 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35334 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35335 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35336 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35337 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35338 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35339 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35340 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35341 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35342 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35343 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35344 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35345 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35346 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35347 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35348 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35349 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35350 25430 2019-11-14 10:55:05 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:55:05 +35351 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35352 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35353 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35354 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35355 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35356 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35357 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35358 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35359 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35360 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35361 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35362 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35363 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35364 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35365 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35366 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35367 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35368 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35369 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35370 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35371 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35372 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35373 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35374 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35375 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35376 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35377 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35378 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35379 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35380 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35381 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35382 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35383 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35384 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35385 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35386 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35387 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35388 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35389 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35390 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35391 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35392 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35393 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35394 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35395 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35396 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35397 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35398 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35399 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35400 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35401 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35402 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35403 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35404 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35405 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35406 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35407 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35408 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35409 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35444 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35410 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35411 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35412 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35413 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35414 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35415 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35416 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35417 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35418 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35419 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35420 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35421 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35422 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35423 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35424 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35425 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35426 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35427 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35428 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35429 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35430 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35431 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35432 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35433 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35434 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35435 25430 2019-11-14 10:55:06 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:06 +35436 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35437 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35438 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35439 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35440 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35441 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35442 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35443 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35445 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35446 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35447 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35448 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35449 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35450 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35451 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35452 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35453 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35454 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35455 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35456 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35457 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35458 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35459 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35460 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35461 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35462 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35463 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35464 25430 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35465 25430 2019-11-14 10:55:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35466 25430 2019-11-14 10:55:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35467 25430 2019-11-14 10:55:07 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35468 25430 2019-11-14 10:55:07 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35469 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35470 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35471 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35472 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35473 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35474 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35475 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35476 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35477 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35478 25430 2019-11-14 10:55:07 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35479 25433 2019-11-14 10:55:07 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35480 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35481 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35482 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35483 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35484 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35485 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35486 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35487 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35488 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35489 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35490 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35491 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35492 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35493 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35494 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35495 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35496 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35497 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35498 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35499 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35500 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35501 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35502 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35503 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35504 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35505 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35506 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35507 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35508 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35509 25433 2019-11-14 10:55:07 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35510 25433 2019-11-14 10:55:07 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35511 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35512 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35513 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35514 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35515 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35516 25431 2019-11-14 10:55:07 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:55:07 +35517 25431 2019-11-14 10:55:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35518 25431 2019-11-14 10:55:08 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35519 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35520 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35521 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35522 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35523 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35524 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35525 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35526 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35527 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35528 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35529 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35530 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35531 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35532 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35533 25431 2019-11-14 10:55:08 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35534 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35535 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35536 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35537 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35538 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35539 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35540 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35541 25431 2019-11-14 10:55:08 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35542 25431 2019-11-14 10:55:08 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35543 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35544 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35545 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35546 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35547 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35548 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35549 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35550 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35551 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35552 25431 2019-11-14 10:55:08 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35553 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35554 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35555 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35556 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35557 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35558 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35559 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35560 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35561 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35562 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35563 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35564 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35565 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35566 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35567 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35568 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35569 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35570 25431 2019-11-14 10:55:08 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35571 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35572 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35573 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35574 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35575 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35576 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35577 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35578 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35579 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35580 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35581 25431 2019-11-14 10:55:08 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35582 25431 2019-11-14 10:55:08 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35583 25431 2019-11-14 10:55:08 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35584 25431 2019-11-14 10:55:08 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35585 25431 2019-11-14 10:55:08 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35586 25431 2019-11-14 10:55:08 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35587 25431 2019-11-14 10:55:08 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35588 25431 2019-11-14 10:55:08 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35589 25431 2019-11-14 10:55:08 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35590 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35591 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35592 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35593 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35594 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35595 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35596 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35597 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35598 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35599 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35600 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35601 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35602 25431 2019-11-14 10:55:08 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:08 +35603 25431 2019-11-14 10:55:09 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35604 25431 2019-11-14 10:55:09 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35605 25431 2019-11-14 10:55:09 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35606 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35607 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35608 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35609 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35610 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35611 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35612 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35613 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35614 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35615 25431 2019-11-14 10:55:09 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35616 25431 2019-11-14 10:55:09 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35617 25431 2019-11-14 10:55:09 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35618 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35619 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35620 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35621 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35622 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35623 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35624 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35625 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35626 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35627 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35628 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35629 25431 2019-11-14 10:55:09 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35630 25431 2019-11-14 10:55:09 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35631 25431 2019-11-14 10:55:09 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35632 25431 2019-11-14 10:55:09 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35633 25431 2019-11-14 10:55:09 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35634 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35635 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35636 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35637 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35638 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35639 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35640 25431 2019-11-14 10:55:09 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35641 25431 2019-11-14 10:55:09 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35642 25432 2019-11-14 10:55:09 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35643 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35644 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35645 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35646 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35647 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35648 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35649 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35650 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35651 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35652 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35653 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35654 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35655 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35656 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35657 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35658 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35659 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35660 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35661 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35662 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35663 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35664 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35665 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35666 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35667 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35668 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35669 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35670 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35671 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35672 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35673 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35674 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35675 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35676 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35677 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35678 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35679 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35680 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35681 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35682 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35683 25432 2019-11-14 10:55:09 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:55:09 +35684 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35685 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35686 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35687 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35688 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35689 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35690 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35691 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35692 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35693 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35694 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35695 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35696 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35697 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35698 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35699 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35700 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35701 25432 2019-11-14 10:55:10 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35702 25432 2019-11-14 10:55:10 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35703 25432 2019-11-14 10:55:10 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35704 25432 2019-11-14 10:55:10 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35705 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35706 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35707 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35708 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35709 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35710 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35711 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35712 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35713 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35714 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35715 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35716 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35717 25432 2019-11-14 10:55:10 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35718 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35719 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35720 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35721 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35722 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35723 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35724 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35725 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35726 25432 2019-11-14 10:55:10 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35727 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35728 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35729 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35730 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35731 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35732 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35733 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35734 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35735 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35736 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35737 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35738 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35739 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35740 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35741 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35742 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35743 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35744 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35745 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35746 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35747 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35748 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35749 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35750 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35751 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35752 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35753 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35754 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35755 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35756 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35757 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35758 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35759 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35760 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35761 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35762 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35763 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35764 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35765 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35766 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35767 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35768 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35769 25432 2019-11-14 10:55:10 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:10 +35770 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35771 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35772 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35773 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35774 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35775 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35776 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35777 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35778 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35779 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35780 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35781 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35782 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35783 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35784 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35785 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35786 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35787 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35788 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35789 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35790 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35791 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35792 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35793 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35794 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35795 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35796 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35797 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35798 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35799 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35800 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35801 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35802 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35803 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35804 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35805 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35806 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35807 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35808 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35809 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35810 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35811 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35812 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35813 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35814 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35815 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35816 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35817 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35818 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35819 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35820 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35821 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35822 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35823 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35824 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35825 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35826 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35827 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35828 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35829 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35830 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35831 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35832 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35833 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35834 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35835 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35836 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35837 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35838 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35839 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35840 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35841 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35842 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35843 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35844 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35845 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35846 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35847 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35848 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35849 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35850 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35851 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35852 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35853 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35854 25432 2019-11-14 10:55:11 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:11 +35855 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35856 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35857 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35858 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35859 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35860 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35861 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35862 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35863 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35864 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35865 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35866 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35867 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35868 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35869 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35870 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35871 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35872 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35873 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35874 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35875 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35876 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35877 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35878 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35879 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35880 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35881 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35882 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35883 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35884 25432 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35885 25434 2019-11-14 10:55:12 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35886 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35887 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35888 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35889 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35890 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35891 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35892 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35893 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35894 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35895 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35896 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35897 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35898 25434 2019-11-14 10:55:12 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35899 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35900 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35901 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35902 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35903 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35904 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35905 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35906 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35907 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35908 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35909 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35910 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35911 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35912 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35913 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35914 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35915 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35916 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35917 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35918 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35919 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35920 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35921 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35922 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35923 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35924 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35925 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35926 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35927 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35928 25430 2019-11-14 10:55:12 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 10:55:12 +35929 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35930 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35931 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35932 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35933 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35934 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35935 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35936 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35937 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35938 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35939 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35940 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35941 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35942 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35943 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35944 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35945 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35946 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35947 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35948 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35949 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35950 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35951 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35952 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35953 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35954 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35955 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35956 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35957 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35958 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35959 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35960 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35961 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35962 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35963 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35964 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35965 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35966 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35967 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35968 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35969 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35970 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35971 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35972 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35973 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35974 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35975 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35976 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35977 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35978 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35979 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35980 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35981 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35982 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35983 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35984 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35985 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35986 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35987 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35988 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35989 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35990 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35991 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35992 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35993 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35994 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35995 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35996 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35997 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35998 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +35999 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36000 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36001 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36002 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36003 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36004 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36005 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36006 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36007 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36008 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36009 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36010 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36011 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36012 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36013 25430 2019-11-14 10:55:13 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:13 +36014 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36015 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36016 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36017 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36018 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36019 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36020 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36021 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36022 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36023 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36024 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36025 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36026 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36027 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36028 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36029 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36030 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36031 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36032 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36033 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36034 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36035 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36036 25430 2019-11-14 10:55:14 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36037 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36038 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36039 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36040 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36041 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36042 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36043 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36044 25430 2019-11-14 10:55:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36045 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36046 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36047 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36048 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36049 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36050 25430 2019-11-14 10:55:14 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36051 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36052 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36053 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36054 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36055 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36056 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36057 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36058 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36059 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36060 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36061 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36062 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36063 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36064 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36065 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36066 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36067 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36068 25430 2019-11-14 10:55:14 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36069 25430 2019-11-14 10:55:14 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36070 25430 2019-11-14 10:55:14 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36071 25430 2019-11-14 10:55:14 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36072 25430 2019-11-14 10:55:14 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36073 25430 2019-11-14 10:55:14 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36074 25430 2019-11-14 10:55:14 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36075 25430 2019-11-14 10:55:14 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36076 25430 2019-11-14 10:55:14 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36077 25430 2019-11-14 10:55:14 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36078 25430 2019-11-14 10:55:14 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36079 25430 2019-11-14 10:55:14 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36080 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36081 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36082 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36083 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36084 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36085 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36086 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36087 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36088 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36089 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36090 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36091 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36092 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36093 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36094 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36095 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36096 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36097 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36098 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36099 25430 2019-11-14 10:55:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:14 +36100 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36101 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36102 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36103 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36104 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36105 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36106 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36107 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36108 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36109 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36110 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36111 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36112 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36113 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36114 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36115 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36116 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36117 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36118 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36119 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36120 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36121 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36122 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36123 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36124 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36125 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36126 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36127 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36128 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36129 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36130 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36131 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36132 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36133 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36134 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36135 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36136 25430 2019-11-14 10:55:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36137 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36138 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36139 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36140 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36141 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36142 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36143 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36144 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36145 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36146 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36147 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36148 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36149 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36150 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36151 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36152 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36153 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36154 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36155 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36156 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36157 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36158 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36159 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36160 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36161 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36162 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36163 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36164 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36165 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36166 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36167 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36168 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36169 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36170 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36171 25430 2019-11-14 10:55:15 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36172 25430 2019-11-14 10:55:15 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36173 25430 2019-11-14 10:55:15 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36174 25430 2019-11-14 10:55:15 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36175 25430 2019-11-14 10:55:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36176 25430 2019-11-14 10:55:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36177 25430 2019-11-14 10:55:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36178 25430 2019-11-14 10:55:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36179 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36180 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36181 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36182 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36183 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36184 25430 2019-11-14 10:55:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36185 25430 2019-11-14 10:55:15 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:15 +36186 25430 2019-11-14 10:55:16 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36187 25430 2019-11-14 10:55:16 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36188 25430 2019-11-14 10:55:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36189 25430 2019-11-14 10:55:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36190 25430 2019-11-14 10:55:16 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36191 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36192 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36193 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36194 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36195 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36196 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36197 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36198 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36199 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36200 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36201 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36202 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36203 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36204 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36205 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36206 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36207 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36208 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36209 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36210 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36211 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36212 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36213 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36214 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36215 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36216 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36217 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36218 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36219 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36220 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36221 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36222 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36223 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36224 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36225 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36226 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36227 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36228 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36229 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36230 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36231 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36232 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36233 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36234 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36235 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36236 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36237 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36238 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36239 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36240 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36241 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36242 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36243 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36244 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36245 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36246 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36247 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36248 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36249 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36250 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36251 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36252 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36253 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36254 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36255 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36256 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36257 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36258 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36259 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36260 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36261 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36262 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36263 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36264 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36265 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36266 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36267 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36268 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36269 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36270 25430 2019-11-14 10:55:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 10:55:16 +36271 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36272 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36273 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36274 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36275 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36276 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36277 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36278 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36279 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36280 25430 2019-11-14 10:55:17 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36281 25430 2019-11-14 10:55:17 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36282 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36283 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36284 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36285 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36286 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36287 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36288 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36289 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36290 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36291 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36292 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36293 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36294 25430 2019-11-14 10:55:17 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36295 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36296 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36297 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36298 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36299 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36300 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36301 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36302 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36303 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36304 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36305 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36306 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36307 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36308 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36309 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36310 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36311 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36312 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36313 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36314 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36315 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36316 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36317 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36318 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36319 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36320 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36321 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36322 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36323 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36324 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36325 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36326 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36327 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36328 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36329 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36330 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36331 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36332 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36333 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36334 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36335 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36336 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36337 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36338 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36339 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36340 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36341 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36342 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36343 25430 2019-11-14 10:55:17 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36344 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36345 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36346 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36347 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36348 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36349 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36350 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36351 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36352 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36353 25430 2019-11-14 10:55:17 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36354 25430 2019-11-14 10:55:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36355 25430 2019-11-14 10:55:17 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:17 +36356 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36357 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36358 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36359 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36360 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36361 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36362 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36363 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36364 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36365 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36366 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36367 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36368 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36369 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36370 25430 2019-11-14 10:55:18 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36371 25430 2019-11-14 10:55:18 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36372 25430 2019-11-14 10:55:18 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36373 25433 2019-11-14 10:55:18 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36374 25433 2019-11-14 10:55:18 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36375 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36376 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36377 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36378 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36379 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36380 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36381 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36382 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36383 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36384 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36385 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36386 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36387 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36388 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36389 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36390 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36391 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36392 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36393 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36394 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36395 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36396 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36397 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36398 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36399 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36400 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36401 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36402 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36403 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36404 25433 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36405 25431 2019-11-14 10:55:18 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36406 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36407 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36408 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36409 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36410 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36411 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36412 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36413 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36414 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36415 25431 2019-11-14 10:55:18 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36416 25431 2019-11-14 10:55:18 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36417 25431 2019-11-14 10:55:18 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36418 25431 2019-11-14 10:55:18 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36419 25431 2019-11-14 10:55:18 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36420 25431 2019-11-14 10:55:18 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36421 25431 2019-11-14 10:55:18 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36422 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36423 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36424 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36425 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36426 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36427 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36428 25431 2019-11-14 10:55:18 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36429 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36430 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36431 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36432 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36433 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36434 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36435 25431 2019-11-14 10:55:18 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:18 +36436 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36437 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36438 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36439 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36440 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36441 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36442 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36443 25431 2019-11-14 10:55:19 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36444 25431 2019-11-14 10:55:19 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36445 25431 2019-11-14 10:55:19 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36446 25431 2019-11-14 10:55:19 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36447 25431 2019-11-14 10:55:19 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36448 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36449 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36450 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36451 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36452 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36453 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36454 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36455 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36456 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36457 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36458 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36459 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36460 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36461 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36462 25431 2019-11-14 10:55:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36463 25431 2019-11-14 10:55:19 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36464 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36465 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36466 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36467 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36468 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36469 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36470 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36471 25431 2019-11-14 10:55:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36472 25431 2019-11-14 10:55:19 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36473 25431 2019-11-14 10:55:19 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36474 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36475 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36476 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36477 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36478 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36479 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36480 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36481 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36482 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36483 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36484 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36485 25431 2019-11-14 10:55:19 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36486 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36487 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36488 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36489 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36490 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36491 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36492 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36493 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36494 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36495 25431 2019-11-14 10:55:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36496 25431 2019-11-14 10:55:19 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36497 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36498 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36499 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36500 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36501 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36502 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36503 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36504 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36505 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36506 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36507 25431 2019-11-14 10:55:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36508 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36509 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36510 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36511 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36512 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36513 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36514 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36515 25431 2019-11-14 10:55:19 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36516 25431 2019-11-14 10:55:19 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36517 25431 2019-11-14 10:55:19 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36518 25431 2019-11-14 10:55:19 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36519 25431 2019-11-14 10:55:19 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36520 25431 2019-11-14 10:55:19 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:19 +36521 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36522 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36523 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36524 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36525 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36526 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36527 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36528 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36529 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36530 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36531 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36532 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36533 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36534 25431 2019-11-14 10:55:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36535 25431 2019-11-14 10:55:20 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36536 25432 2019-11-14 10:55:20 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36537 25432 2019-11-14 10:55:20 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36538 25432 2019-11-14 10:55:20 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36539 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36540 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36541 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36542 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36543 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36544 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36545 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36546 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36547 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36548 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36549 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36550 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36551 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36552 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36553 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36554 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36555 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36556 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36557 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36558 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36559 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36560 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36561 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36562 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36563 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36564 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36565 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36566 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36567 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36568 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36569 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36570 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36571 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36572 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36573 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36574 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36575 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36576 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36577 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36578 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36579 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36580 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36581 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36582 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36583 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36584 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36585 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36586 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36587 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36588 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36589 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36590 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36591 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36592 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36593 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36594 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36595 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36596 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36597 25432 2019-11-14 10:55:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36598 25432 2019-11-14 10:55:20 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36599 25432 2019-11-14 10:55:20 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36600 25432 2019-11-14 10:55:20 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36601 25432 2019-11-14 10:55:20 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36602 25432 2019-11-14 10:55:20 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:20 +36603 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36604 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36605 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36606 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36607 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36608 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36609 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36610 25432 2019-11-14 10:55:21 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36611 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36612 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36613 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36614 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36615 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36616 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36617 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36618 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36619 25432 2019-11-14 10:55:21 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36620 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36621 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36622 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36623 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36624 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36625 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36626 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36627 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36628 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36629 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36630 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36631 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36632 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36633 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36634 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36635 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36636 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36637 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36638 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36639 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36640 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36641 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36642 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36643 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36644 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36645 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36646 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36647 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36648 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36649 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36650 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36651 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36652 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36653 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36654 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36655 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36656 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36657 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36658 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36659 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36660 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36661 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36662 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36663 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36664 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36665 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36666 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36667 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36668 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36669 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36670 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36671 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36672 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36673 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36674 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36675 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36676 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36677 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36678 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36679 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36680 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36681 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36682 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36683 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36684 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36685 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36686 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36687 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36688 25432 2019-11-14 10:55:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:21 +36689 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36690 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36691 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36692 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36693 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36694 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36695 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36696 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36697 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36698 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36699 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36700 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36701 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36702 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36703 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36704 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36705 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36706 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36707 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36708 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36709 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36710 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36711 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36712 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36713 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36714 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36715 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36716 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36717 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36718 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36719 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36720 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36721 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36722 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36723 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36724 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36725 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36726 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36727 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36728 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36729 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36730 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36731 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36732 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36733 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36734 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36735 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36736 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36737 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36738 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36739 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36740 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36741 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36742 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36743 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36744 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36745 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36746 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36747 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36748 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36749 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36750 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36751 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36752 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36753 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36754 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36755 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36756 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36757 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36758 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36759 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36760 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36761 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36762 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36763 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36764 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36765 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36766 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36767 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36768 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36769 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36770 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36771 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36772 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36773 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36774 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36775 25432 2019-11-14 10:55:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:22 +36776 25432 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36777 25432 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36778 25432 2019-11-14 10:55:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36779 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36780 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36781 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36782 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36783 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36784 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36785 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36786 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36787 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36788 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36789 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36790 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36791 25434 2019-11-14 10:55:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36792 25434 2019-11-14 10:55:23 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36793 25430 2019-11-14 10:55:23 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36794 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36795 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36796 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36797 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36798 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36799 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36800 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36801 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36802 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36803 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36804 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36805 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36806 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36807 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36808 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36809 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36810 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36811 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36812 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36813 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36814 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36815 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36816 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36817 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36818 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36819 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36820 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36821 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36822 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36823 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36824 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36825 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36826 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36827 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36828 25430 2019-11-14 10:55:23 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36829 25430 2019-11-14 10:55:23 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36830 25430 2019-11-14 10:55:23 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36831 25430 2019-11-14 10:55:23 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36832 25430 2019-11-14 10:55:23 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36833 25430 2019-11-14 10:55:23 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36834 25430 2019-11-14 10:55:23 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36835 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36836 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36837 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36838 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36839 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36840 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36841 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36842 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36843 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36844 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36845 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36846 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36847 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36848 25430 2019-11-14 10:55:23 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 10:55:23 +36849 25430 2019-11-14 10:55:24 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36850 25430 2019-11-14 10:55:24 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36851 25430 2019-11-14 10:55:24 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36852 25430 2019-11-14 10:55:24 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36853 25430 2019-11-14 10:55:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36854 25430 2019-11-14 10:55:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36855 25430 2019-11-14 10:55:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36856 25430 2019-11-14 10:55:24 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36857 25430 2019-11-14 10:55:24 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36858 25430 2019-11-14 10:55:24 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36859 25430 2019-11-14 10:55:24 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36860 25430 2019-11-14 10:55:24 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36861 25430 2019-11-14 10:55:24 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36862 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36863 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36864 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36865 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36866 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36867 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36868 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36869 25430 2019-11-14 10:55:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36870 25430 2019-11-14 10:55:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36871 25430 2019-11-14 10:55:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36872 25430 2019-11-14 10:55:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36873 25430 2019-11-14 10:55:24 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36874 25430 2019-11-14 10:55:24 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36875 25430 2019-11-14 10:55:24 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36876 25430 2019-11-14 10:55:24 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36877 25430 2019-11-14 10:55:24 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36878 25430 2019-11-14 10:55:24 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36879 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36880 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36881 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36882 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36883 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36884 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36885 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36886 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36887 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36888 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36889 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36890 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36891 25430 2019-11-14 10:55:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36892 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36893 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36894 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36895 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36896 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36897 25430 2019-11-14 10:55:24 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36898 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36899 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36900 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36901 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36902 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36903 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36904 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36905 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36906 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36907 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36908 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36909 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36910 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36911 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36912 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36913 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36914 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36915 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36916 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36917 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36918 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36919 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36920 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36921 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36922 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36923 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36924 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36925 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36926 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36927 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36928 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36929 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36930 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36931 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36932 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36933 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36934 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:24 +36935 25430 2019-11-14 10:55:24 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36936 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36937 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36938 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36939 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36940 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36941 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36942 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36943 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36944 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36945 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36946 25430 2019-11-14 10:55:25 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36947 25430 2019-11-14 10:55:25 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36948 25430 2019-11-14 10:55:25 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36949 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36950 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36951 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36952 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36953 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36954 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36955 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36956 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36957 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36958 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36959 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36960 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36961 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36962 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36963 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36964 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36965 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36966 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36967 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36968 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36969 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36970 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36971 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36972 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36973 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36974 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36975 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36976 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36977 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36978 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36979 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36980 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36981 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36982 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36983 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36984 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36985 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36986 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36987 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36988 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36989 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36990 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36991 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36992 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36993 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36994 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36995 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36996 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36997 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36998 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +36999 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37000 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37001 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37002 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37003 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37004 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37005 25430 2019-11-14 10:55:25 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37006 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37007 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37008 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37009 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37010 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37011 25430 2019-11-14 10:55:25 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37012 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37013 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37014 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37015 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37016 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37017 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37018 25430 2019-11-14 10:55:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:25 +37019 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37020 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37021 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37022 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37023 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37024 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37025 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37026 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37027 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37028 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37029 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37030 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37031 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37032 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37033 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37034 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37035 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37036 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37037 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37038 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37039 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37040 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37041 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37042 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37043 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37044 25430 2019-11-14 10:55:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 10:55:26 +37045 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37046 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37047 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37048 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37049 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37050 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37051 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37052 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37053 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37054 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37055 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37056 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37057 25434 2019-11-14 11:00:13 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37058 25434 2019-11-14 11:00:13 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37059 25430 2019-11-14 11:00:13 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37060 25430 2019-11-14 11:00:13 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37061 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37062 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37063 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37064 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37065 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37066 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37067 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37068 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37069 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37070 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37071 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37072 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37073 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37074 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37075 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37076 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37077 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37078 25430 2019-11-14 11:00:13 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37079 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37080 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37081 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37082 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37083 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37084 25430 2019-11-14 11:00:13 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37085 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37086 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37087 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37088 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37089 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37090 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37091 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37092 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37093 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37094 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37095 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37096 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37097 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37098 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37099 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37100 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37101 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37102 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37103 25430 2019-11-14 11:00:13 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:13 +37104 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37105 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37106 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37107 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37108 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37109 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37110 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37111 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37112 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37113 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37114 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37115 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37116 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37117 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37118 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37119 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37120 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37121 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37122 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37123 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37124 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37125 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37126 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37127 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37128 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37129 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37130 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37131 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37132 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37133 25430 2019-11-14 11:00:14 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37134 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37135 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37136 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37137 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37138 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37139 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37140 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37141 25430 2019-11-14 11:00:14 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37142 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37143 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37144 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37145 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37146 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37147 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37148 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37149 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37150 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37151 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37152 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37153 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37154 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37155 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37156 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37157 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37158 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37159 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37160 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37161 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37162 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37163 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37164 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37165 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37166 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37167 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37168 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37169 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37170 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37171 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37172 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37173 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37174 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37175 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37176 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37177 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37178 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37179 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37180 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37181 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37182 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37183 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37184 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37185 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37186 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37187 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37188 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37189 25430 2019-11-14 11:00:14 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:14 +37190 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37224 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37191 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37192 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37193 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37194 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37195 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37196 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37197 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37198 25430 2019-11-14 11:00:15 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37199 25430 2019-11-14 11:00:15 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37200 25430 2019-11-14 11:00:15 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37201 25430 2019-11-14 11:00:15 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37202 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37203 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37204 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37205 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37206 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37207 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37208 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37209 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37210 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37211 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37212 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37213 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37214 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37215 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37216 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37217 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37218 25430 2019-11-14 11:00:15 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37219 25430 2019-11-14 11:00:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37220 25430 2019-11-14 11:00:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37221 25430 2019-11-14 11:00:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37222 25430 2019-11-14 11:00:15 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37223 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37225 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37226 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37227 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37228 25430 2019-11-14 11:00:15 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37229 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37230 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37231 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37232 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37233 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37234 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37235 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37236 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37237 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37238 25430 2019-11-14 11:00:15 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37239 25430 2019-11-14 11:00:15 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37240 25430 2019-11-14 11:00:15 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37241 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37242 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37243 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37244 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37245 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37246 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37247 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37248 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37249 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37250 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37251 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37252 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37253 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37254 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37255 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37256 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37257 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37258 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37259 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37260 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37261 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37262 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37263 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37264 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37265 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37266 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37267 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37268 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37269 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37270 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37271 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37272 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37273 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37274 25430 2019-11-14 11:00:15 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 11:00:15 +37275 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37276 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37277 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37278 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37279 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37280 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37281 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37282 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37283 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37284 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37285 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37286 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37287 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37288 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37289 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37290 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37291 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37292 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37293 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37294 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37295 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37296 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37297 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37298 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37299 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37300 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37301 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37302 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37303 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37304 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37305 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37306 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37307 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37308 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37309 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37310 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37311 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37312 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37313 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37314 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37315 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37316 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37317 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37318 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37319 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37320 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37321 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37322 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37323 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37324 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37325 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37326 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37327 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37328 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37329 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37330 25430 2019-11-14 11:00:16 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37331 25430 2019-11-14 11:00:16 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37332 25430 2019-11-14 11:00:16 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37333 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37334 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37335 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37336 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37337 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37338 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37339 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37340 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37341 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37342 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37343 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37344 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37345 25430 2019-11-14 11:00:16 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37346 25430 2019-11-14 11:00:16 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37347 25430 2019-11-14 11:00:16 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37348 25430 2019-11-14 11:00:16 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37349 25430 2019-11-14 11:00:16 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37350 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37351 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37352 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37353 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37354 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37355 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37356 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37357 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37358 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37359 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37360 25430 2019-11-14 11:00:16 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:16 +37361 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37362 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37363 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37364 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37365 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37366 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37367 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37368 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37369 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37370 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37371 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37372 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37373 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37374 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37375 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37376 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37377 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37378 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37379 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37380 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37381 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37382 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37383 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37384 25430 2019-11-14 11:00:17 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37385 25430 2019-11-14 11:00:17 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37386 25430 2019-11-14 11:00:17 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37387 25430 2019-11-14 11:00:17 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37388 25430 2019-11-14 11:00:17 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37389 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37390 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37391 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37392 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37393 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37394 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37395 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37396 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37397 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37398 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37399 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37400 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37401 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37402 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37403 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37404 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37405 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37406 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37407 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37408 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37409 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37410 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37411 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37412 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37413 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37414 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37415 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37416 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37417 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37418 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37419 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37420 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37421 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37422 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37423 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37424 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37425 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37426 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37427 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37428 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37429 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37430 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37431 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37432 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37433 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37434 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37435 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37436 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37437 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37438 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37439 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37440 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37441 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37442 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37443 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37444 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37445 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37446 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37447 25430 2019-11-14 11:00:17 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:17 +37448 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37449 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37450 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37451 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37452 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37453 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37454 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37455 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37456 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37457 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37458 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37459 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37460 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37461 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37462 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37463 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37464 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37465 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37466 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37467 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37468 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37469 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37470 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37471 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37472 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37473 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37474 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37475 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37476 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37477 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37478 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37479 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37480 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37481 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37482 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37483 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37484 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37485 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37486 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37487 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37488 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37489 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37490 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37491 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37492 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37493 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37494 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37495 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37496 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37497 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37498 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37499 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37500 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37501 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37502 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37503 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37504 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37505 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37506 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37507 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37508 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37509 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37510 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37511 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37512 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37513 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37514 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37515 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37516 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37517 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37518 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37519 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37520 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37521 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37522 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37523 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37524 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37525 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37526 25430 2019-11-14 11:00:18 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37527 25430 2019-11-14 11:00:18 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37528 25430 2019-11-14 11:00:18 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37529 25430 2019-11-14 11:00:18 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37530 25430 2019-11-14 11:00:18 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37531 25430 2019-11-14 11:00:18 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37532 25430 2019-11-14 11:00:18 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:18 +37533 25433 2019-11-14 11:00:19 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37534 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37535 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37536 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37537 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37538 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37539 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37540 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37541 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37542 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37543 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37544 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37545 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37546 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37547 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37548 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37549 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37550 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37551 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37552 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37553 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37554 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37555 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37556 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37557 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37558 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37559 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37560 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37561 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37562 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37563 25433 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37564 25433 2019-11-14 11:00:19 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37565 25431 2019-11-14 11:00:19 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37566 25431 2019-11-14 11:00:19 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37567 25431 2019-11-14 11:00:19 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37568 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37569 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37570 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37571 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37572 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37573 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37574 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37575 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37576 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37577 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37578 25431 2019-11-14 11:00:19 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37579 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37580 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37581 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37582 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37583 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37584 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37585 25431 2019-11-14 11:00:19 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37586 25431 2019-11-14 11:00:19 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37587 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37588 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37589 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37590 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37591 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37592 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37593 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37594 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37595 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37596 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37597 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37598 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37599 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37600 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37601 25431 2019-11-14 11:00:19 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37602 25431 2019-11-14 11:00:19 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37603 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37604 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37605 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37606 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37607 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37608 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37609 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37610 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37611 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37612 25431 2019-11-14 11:00:19 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37613 25431 2019-11-14 11:00:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37614 25431 2019-11-14 11:00:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37615 25431 2019-11-14 11:00:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37616 25431 2019-11-14 11:00:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37617 25431 2019-11-14 11:00:19 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 11:00:19 +37618 25431 2019-11-14 11:00:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37619 25431 2019-11-14 11:00:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37620 25431 2019-11-14 11:00:20 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37621 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37622 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37623 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37624 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37625 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37626 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37627 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37628 25431 2019-11-14 11:00:20 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37629 25431 2019-11-14 11:00:20 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37630 25431 2019-11-14 11:00:20 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37631 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37632 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37633 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37634 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37635 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37636 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37637 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37638 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37639 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37640 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37641 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37642 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37643 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37644 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37645 25431 2019-11-14 11:00:20 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37646 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37647 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37648 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37649 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37650 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37651 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37652 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37653 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37654 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37655 25431 2019-11-14 11:00:20 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37656 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37657 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37658 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37659 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37660 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37661 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37662 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37663 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37664 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37665 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37666 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37667 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37668 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37669 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37670 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37671 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37672 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37673 25431 2019-11-14 11:00:20 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37674 25431 2019-11-14 11:00:20 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37675 25431 2019-11-14 11:00:20 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37676 25431 2019-11-14 11:00:20 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37677 25431 2019-11-14 11:00:20 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37678 25431 2019-11-14 11:00:20 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37679 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37680 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37681 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37682 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37683 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37684 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37685 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37686 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37687 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37688 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37689 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37690 25431 2019-11-14 11:00:20 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37691 25431 2019-11-14 11:00:20 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37692 25431 2019-11-14 11:00:20 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37693 25431 2019-11-14 11:00:20 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37694 25431 2019-11-14 11:00:20 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37695 25431 2019-11-14 11:00:20 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37696 25432 2019-11-14 11:00:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37697 25432 2019-11-14 11:00:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37698 25432 2019-11-14 11:00:20 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 11:00:20 +37699 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37700 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37701 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37702 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37703 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37704 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37705 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37706 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37707 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37708 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37709 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37710 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37711 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37712 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37713 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37714 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37715 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37716 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37717 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37718 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37719 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37720 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37721 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37722 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37723 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37724 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37725 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37726 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37727 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37728 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37729 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37730 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37731 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37732 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37733 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37734 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37735 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37736 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37737 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37738 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37739 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37740 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37741 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37742 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37743 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37744 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37745 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37746 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37747 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37748 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37749 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37750 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37751 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37752 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37753 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37754 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37755 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37756 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37757 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37758 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37759 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37760 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37761 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37762 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37763 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37764 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37765 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37766 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37767 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37768 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37769 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37770 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37771 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37772 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37773 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37774 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37775 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37776 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37777 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37778 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37779 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37780 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37781 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37782 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37783 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37784 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37785 25432 2019-11-14 11:00:21 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:21 +37786 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37787 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37788 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37789 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37790 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37791 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37792 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37793 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37794 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37795 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37796 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37797 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37798 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37799 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37800 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37801 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37802 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37803 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37804 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37805 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37806 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37807 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37808 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37809 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37810 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37811 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37812 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37813 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37814 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37815 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37816 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37817 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37818 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37819 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37820 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37821 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37822 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37823 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37824 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37825 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37826 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37827 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37828 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37829 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37830 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37831 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37832 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37833 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37834 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37835 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37836 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37837 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37838 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37839 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37840 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37841 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37842 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37843 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37844 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37845 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37846 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37847 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37848 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37849 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37850 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37851 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37852 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37853 25432 2019-11-14 11:00:22 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37854 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37855 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37856 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37857 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37858 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37859 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37860 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37861 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37862 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37863 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37864 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37865 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37866 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37867 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37868 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37869 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37870 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37871 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37872 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37873 25432 2019-11-14 11:00:22 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:22 +37874 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37875 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37876 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37877 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37878 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37879 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37880 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37881 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37882 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37883 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37884 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37885 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37886 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37887 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37888 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37889 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37890 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37891 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37892 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37893 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37894 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37895 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37896 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37897 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37898 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37899 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37900 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37901 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37902 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37903 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37904 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37905 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37906 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37907 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37908 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37909 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37910 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37911 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37912 25432 2019-11-14 11:00:23 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37913 25432 2019-11-14 11:00:23 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37914 25432 2019-11-14 11:00:23 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37915 25432 2019-11-14 11:00:23 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37916 25432 2019-11-14 11:00:23 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37917 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37918 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37919 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37920 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37921 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37922 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37923 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37924 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37925 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37926 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37927 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37928 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37929 25432 2019-11-14 11:00:23 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37930 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37931 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37932 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37933 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37969 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37934 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37935 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37936 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37937 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37938 25432 2019-11-14 11:00:23 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37939 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37940 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37941 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37942 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37943 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37944 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37945 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37946 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37947 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37948 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37949 25434 2019-11-14 11:00:23 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:23 +37950 25434 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37951 25434 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37952 25434 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37953 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37954 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37955 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37956 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37957 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37958 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37959 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37960 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37961 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37962 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37963 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37964 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37965 25430 2019-11-14 11:00:24 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37966 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37967 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37968 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37970 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37971 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37972 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37973 25430 2019-11-14 11:00:24 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37974 25430 2019-11-14 11:00:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37975 25430 2019-11-14 11:00:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37976 25430 2019-11-14 11:00:24 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37977 25430 2019-11-14 11:00:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37978 25430 2019-11-14 11:00:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37979 25430 2019-11-14 11:00:24 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37980 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37981 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37982 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37983 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37984 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37985 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37986 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37987 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37988 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37989 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37990 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37991 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37992 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37993 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37994 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37995 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37996 25430 2019-11-14 11:00:24 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37997 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37998 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +37999 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38000 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38001 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38002 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38003 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38004 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38005 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38006 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38007 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38008 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38009 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38010 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38011 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38012 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38013 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38014 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38015 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38016 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38017 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38018 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38019 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38020 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38021 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38022 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38023 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38024 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38025 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38026 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38027 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38028 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38029 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38030 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38031 25430 2019-11-14 11:00:24 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:24 +38032 25430 2019-11-14 11:00:25 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38033 25430 2019-11-14 11:00:25 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38034 25430 2019-11-14 11:00:25 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38035 25430 2019-11-14 11:00:25 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38036 25430 2019-11-14 11:00:25 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38037 25430 2019-11-14 11:00:25 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38038 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38039 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38040 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38041 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38042 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38043 25430 2019-11-14 11:00:25 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38044 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38045 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38046 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38047 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38048 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38049 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38050 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38051 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38052 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38053 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38054 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38055 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38056 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38057 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38058 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38059 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38060 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38061 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38062 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38063 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38064 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38065 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38066 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38067 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38068 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38069 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38070 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38071 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38072 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38073 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38074 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38075 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38076 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38077 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38078 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38079 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38080 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38081 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38082 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38083 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38084 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38085 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38086 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38087 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38088 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38089 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38090 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38091 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38092 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38093 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38094 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38095 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38096 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38097 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38098 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38099 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38100 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38101 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38102 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38103 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38104 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38105 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38106 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38107 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38108 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38109 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38110 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38111 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38112 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38113 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38114 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38115 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38116 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38117 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38118 25430 2019-11-14 11:00:25 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:25 +38119 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38120 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38121 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38122 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38123 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38124 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38125 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38126 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38127 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38128 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38129 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38130 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38131 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38132 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38133 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38134 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38135 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38136 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38137 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38138 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38139 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38140 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38141 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38142 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38143 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38144 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38145 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38146 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38147 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38148 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38149 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38150 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38151 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38152 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38153 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38154 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38155 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38156 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38157 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38158 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38159 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38160 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38161 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38162 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38163 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38164 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38165 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38166 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38167 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38168 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38169 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38170 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38171 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38172 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38173 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38174 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38175 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38176 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38177 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38178 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38179 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38180 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38181 25430 2019-11-14 11:00:26 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38182 25430 2019-11-14 11:00:26 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38183 25430 2019-11-14 11:00:26 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38184 25430 2019-11-14 11:00:26 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38185 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38186 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38187 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38188 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38189 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38190 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38191 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38192 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38193 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38194 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38195 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38196 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38197 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38198 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38199 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38200 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38201 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38202 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38203 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38204 25430 2019-11-14 11:00:26 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:26 +38205 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38206 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38207 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38208 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38209 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38210 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38211 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38212 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38213 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38214 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38215 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38216 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38217 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38218 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38219 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38220 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38221 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38222 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38223 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38224 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38225 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38226 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38227 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38228 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38229 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38230 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38231 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38232 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38233 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38234 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38235 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38236 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38237 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38238 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38239 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38240 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38241 25430 2019-11-14 11:00:27 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38242 25430 2019-11-14 11:00:27 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38243 25430 2019-11-14 11:00:27 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38244 25430 2019-11-14 11:00:27 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38245 25430 2019-11-14 11:00:27 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38246 25430 2019-11-14 11:00:27 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38247 25430 2019-11-14 11:00:27 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38248 25430 2019-11-14 11:00:27 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38249 25430 2019-11-14 11:00:27 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38250 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38251 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38252 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38253 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38254 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38255 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38256 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38257 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38258 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38259 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38260 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38261 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38262 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38263 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38264 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38265 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38266 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38267 25430 2019-11-14 11:00:27 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38268 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38269 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38270 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38271 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38272 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38273 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38274 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38444 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38275 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38276 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38277 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38278 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38279 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38280 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38281 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38282 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38283 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38284 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38285 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38286 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38287 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38288 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38289 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38290 25430 2019-11-14 11:00:27 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:27 +38291 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38292 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38293 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38294 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38295 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38296 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38297 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38298 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38299 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38300 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38301 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38302 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38303 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38304 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38305 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38306 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38307 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38308 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38309 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38310 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38311 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38312 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38313 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38314 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38315 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38316 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38317 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38318 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38319 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38320 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38321 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38322 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38323 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38324 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38325 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38326 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38327 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38328 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38329 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38330 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38331 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38332 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38333 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38334 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38335 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38336 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38337 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38338 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38339 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38340 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38341 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38342 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38343 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38344 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38345 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38346 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38347 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38348 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38349 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38350 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38351 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38352 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38353 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38354 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38355 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38356 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38357 25430 2019-11-14 11:00:28 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38358 25430 2019-11-14 11:00:28 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38359 25430 2019-11-14 11:00:28 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38360 25430 2019-11-14 11:00:28 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38361 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38362 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38363 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38364 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38365 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38366 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38367 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38368 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38369 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38370 25430 2019-11-14 11:00:28 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38371 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38372 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38373 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38374 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38375 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38376 25430 2019-11-14 11:00:28 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:28 +38377 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38378 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38379 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38380 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38381 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38382 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38383 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38384 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38385 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38386 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38387 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38388 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38389 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38390 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38391 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38392 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38393 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38394 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38395 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38396 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38397 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38398 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38399 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38400 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38401 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38402 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38403 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38404 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38405 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38406 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38407 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38408 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38409 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38410 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38411 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38412 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38413 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38414 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38415 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38416 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38417 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38418 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38419 25430 2019-11-14 11:00:29 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38420 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38421 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38422 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38423 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38424 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38425 25430 2019-11-14 11:00:29 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38426 25430 2019-11-14 11:00:29 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38427 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38428 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38429 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38430 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38431 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38432 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38433 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38434 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38435 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38436 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38437 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38438 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38439 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38440 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38441 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38442 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38443 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38445 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38446 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38447 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38448 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38449 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38450 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38451 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38452 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38453 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38454 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38455 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38456 25433 2019-11-14 11:00:29 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38457 25433 2019-11-14 11:00:29 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38458 25433 2019-11-14 11:00:29 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 11:00:29 +38459 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38460 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38461 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38462 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38463 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38464 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38465 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38466 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38467 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38468 25431 2019-11-14 11:00:30 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38469 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38470 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38471 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38472 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38473 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38474 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38475 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38476 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38477 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38478 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38479 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38480 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38481 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38482 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38483 25431 2019-11-14 11:00:30 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38484 25431 2019-11-14 11:00:30 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38485 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38486 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38487 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38488 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38489 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38490 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38491 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38492 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38493 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38494 25431 2019-11-14 11:00:30 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38495 25431 2019-11-14 11:00:30 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38496 25431 2019-11-14 11:00:30 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38497 25431 2019-11-14 11:00:30 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38498 25431 2019-11-14 11:00:30 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38499 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38500 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38501 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38502 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38503 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38504 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38505 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38506 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38507 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38508 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38509 25431 2019-11-14 11:00:30 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38510 25431 2019-11-14 11:00:30 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38511 25431 2019-11-14 11:00:30 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38512 25431 2019-11-14 11:00:30 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38513 25431 2019-11-14 11:00:30 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38514 25431 2019-11-14 11:00:30 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38515 25431 2019-11-14 11:00:30 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38516 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38517 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38518 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38519 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38520 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38521 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38522 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38523 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38524 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38525 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38526 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38527 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38528 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38529 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38530 25431 2019-11-14 11:00:30 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38531 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38532 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38533 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38534 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38535 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38536 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38537 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38538 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38539 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38540 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38541 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38542 25431 2019-11-14 11:00:30 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38543 25431 2019-11-14 11:00:30 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38544 25431 2019-11-14 11:00:30 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38545 25431 2019-11-14 11:00:30 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:30 +38546 25431 2019-11-14 11:00:31 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38547 25431 2019-11-14 11:00:31 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38548 25431 2019-11-14 11:00:31 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38549 25431 2019-11-14 11:00:31 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38550 25431 2019-11-14 11:00:31 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38551 25431 2019-11-14 11:00:31 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38552 25431 2019-11-14 11:00:31 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38553 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38554 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38555 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38556 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38557 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38558 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38559 25431 2019-11-14 11:00:31 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38560 25431 2019-11-14 11:00:31 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38561 25431 2019-11-14 11:00:31 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38562 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38563 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38564 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38565 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38566 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38567 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38568 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38569 25431 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38570 25431 2019-11-14 11:00:31 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38571 25431 2019-11-14 11:00:31 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38572 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38573 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38574 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38575 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38576 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38577 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38578 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38579 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38580 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38581 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38582 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38583 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38584 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38585 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38586 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38587 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38588 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38589 25431 2019-11-14 11:00:31 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38590 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38591 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38592 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38593 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38594 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38595 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38596 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38597 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38598 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38599 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38600 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38601 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38602 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38603 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38604 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38605 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38606 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38607 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38608 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38609 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38610 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38611 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38612 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38613 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38614 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38615 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38616 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38617 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38618 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38619 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38620 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38621 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38622 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38623 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38624 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38625 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38626 25432 2019-11-14 11:00:31 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:31 +38627 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38628 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38629 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38630 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38631 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38632 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38633 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38634 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38635 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38636 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38637 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38638 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38639 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38640 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38641 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38642 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38643 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38644 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38645 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38646 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38647 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38648 25432 2019-11-14 11:00:32 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38649 25432 2019-11-14 11:00:32 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38650 25432 2019-11-14 11:00:32 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38651 25432 2019-11-14 11:00:32 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38652 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38653 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38654 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38655 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38656 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38657 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38658 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38659 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38660 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38661 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38662 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38663 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38664 25432 2019-11-14 11:00:32 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38665 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38666 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38667 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38668 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38669 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38670 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38671 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38672 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38673 25432 2019-11-14 11:00:32 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38674 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38675 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38676 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38677 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38678 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38679 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38680 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38681 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38682 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38683 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38684 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38685 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38686 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38687 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38688 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38689 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38690 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38691 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38692 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38693 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38694 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38695 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38696 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38697 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38698 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38699 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38700 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38701 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38702 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38703 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38704 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38705 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38706 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38707 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38708 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38709 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38710 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38711 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38712 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38713 25432 2019-11-14 11:00:32 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:32 +38714 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38715 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38716 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38717 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38718 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38719 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38720 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38721 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38722 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38723 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38724 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38725 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38726 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38727 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38728 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38729 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38730 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38731 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38732 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38733 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38734 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38735 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38736 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38737 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38738 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38739 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38740 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38741 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38742 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38743 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38744 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38745 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38746 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38747 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38748 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38749 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38750 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38751 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38752 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38753 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38754 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38755 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38756 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38757 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38758 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38759 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38760 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38761 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38762 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38763 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38764 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38765 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38766 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38767 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38768 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38769 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38770 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38771 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38772 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38773 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38774 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38775 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38776 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38777 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38778 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38779 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38780 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38781 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38782 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38783 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38784 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38785 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38786 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38787 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38788 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38789 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38790 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38791 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38792 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38793 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38794 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38795 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38796 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38797 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38798 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38799 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38800 25432 2019-11-14 11:00:33 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:33 +38801 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38802 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38803 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38804 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38805 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38806 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38807 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38808 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38809 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38810 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38811 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38812 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38813 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38814 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38815 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38816 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38817 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38818 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38819 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38820 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38821 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38822 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38823 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38824 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38825 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38826 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38827 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38828 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38829 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38830 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38831 25432 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38832 25432 2019-11-14 11:00:34 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38833 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38834 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38835 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38836 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38837 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38838 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38839 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38840 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38841 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38842 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38843 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38844 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38845 25434 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38846 25434 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38847 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38848 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38849 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38850 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38851 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38852 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38853 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38854 25430 2019-11-14 11:00:34 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38855 25430 2019-11-14 11:00:34 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38856 25430 2019-11-14 11:00:34 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38857 25430 2019-11-14 11:00:34 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38858 25430 2019-11-14 11:00:34 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38859 25430 2019-11-14 11:00:34 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38860 25430 2019-11-14 11:00:34 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38861 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38862 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38863 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38864 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38865 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38866 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38867 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38868 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38869 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38870 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38871 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38872 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38873 25430 2019-11-14 11:00:34 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:34 +38874 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38875 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38876 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38877 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38878 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38879 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38880 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38881 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38882 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38883 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38884 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38885 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38886 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38887 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38888 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38889 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38890 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38891 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38892 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38893 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38894 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38895 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38896 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38897 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38898 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38899 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38900 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38901 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38902 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38903 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38904 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38905 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38906 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38907 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38908 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38909 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +39108 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +38910 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38911 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38912 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38913 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38914 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38915 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38916 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38917 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38918 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38919 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38920 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38921 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38922 25430 2019-11-14 11:00:35 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38923 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38924 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38925 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38926 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38927 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38928 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38929 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38930 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38931 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38932 25430 2019-11-14 11:00:35 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38933 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38934 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38935 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38936 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38937 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38938 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38939 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38940 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38941 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38942 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38943 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38944 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38945 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38946 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38947 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38948 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38949 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38950 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38951 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38952 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38953 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38954 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38955 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38956 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38957 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38958 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38959 25430 2019-11-14 11:00:35 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:35 +38960 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38961 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38962 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38963 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38964 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38965 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38966 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38967 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38968 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38969 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38970 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38971 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38972 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38973 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38974 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38975 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38976 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38977 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38978 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38979 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38980 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38981 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38982 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38983 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38984 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38985 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38986 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38987 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38988 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38989 25430 2019-11-14 11:00:36 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38990 25430 2019-11-14 11:00:36 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38991 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38992 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38993 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38994 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38995 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38996 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38997 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38998 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +38999 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39000 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39001 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39002 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39003 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39004 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39005 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39006 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39007 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39008 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39009 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39010 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39011 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39012 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39013 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39014 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39015 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39016 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39017 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39018 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39019 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39020 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39021 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39022 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39023 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39024 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39025 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39026 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39027 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39028 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39029 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39030 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39031 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39032 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39033 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39034 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39035 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39036 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39037 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39038 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39039 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39040 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39041 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39042 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39043 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39044 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39045 25430 2019-11-14 11:00:36 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:36 +39046 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39047 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39048 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39049 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39050 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39051 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39052 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39053 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39054 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39055 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39056 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39057 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39058 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39059 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39060 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39061 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39062 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39063 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39064 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39065 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39066 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39067 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39068 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39069 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39070 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39071 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39072 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39073 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39074 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39075 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39076 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39077 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39078 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39079 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39080 25430 2019-11-14 11:00:37 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39081 25430 2019-11-14 11:00:37 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39082 25430 2019-11-14 11:00:37 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39083 25430 2019-11-14 11:00:37 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39084 25430 2019-11-14 11:00:37 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39085 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39086 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39087 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39088 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39089 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39090 25430 2019-11-14 11:00:37 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39091 25430 2019-11-14 11:00:37 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39092 25430 2019-11-14 11:00:37 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39093 25430 2019-11-14 11:00:37 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39094 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39095 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39096 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39097 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39098 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39099 25430 2019-11-14 11:00:37 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39100 25430 2019-11-14 11:00:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39101 25430 2019-11-14 11:00:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39102 25430 2019-11-14 11:00:37 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39103 25430 2019-11-14 11:00:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39104 25430 2019-11-14 11:00:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39105 25430 2019-11-14 11:00:37 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39106 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39107 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39109 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39110 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39111 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39112 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39113 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39114 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39115 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39116 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39117 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39118 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39119 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39120 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39121 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39122 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39123 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39124 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39125 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39126 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39127 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39128 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39129 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39130 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39131 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39132 25430 2019-11-14 11:00:37 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:37 +39133 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39134 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39135 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39136 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39137 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39138 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39139 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39140 25430 2019-11-14 11:00:38 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39141 25430 2019-11-14 11:00:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39142 25430 2019-11-14 11:00:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39143 25430 2019-11-14 11:00:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39144 25430 2019-11-14 11:00:38 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39145 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39146 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39147 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39148 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39149 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39150 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39151 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39152 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39153 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39154 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39155 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39156 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39157 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39158 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39159 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39160 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39161 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39162 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39163 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39164 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39165 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39166 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39167 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39168 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39169 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39170 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39171 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39172 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39173 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39174 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39175 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39176 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39177 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39178 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39179 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39180 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39181 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39182 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39183 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39184 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39185 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39186 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39187 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39188 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39189 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39190 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39191 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39192 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39193 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39194 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39195 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39196 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39197 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39198 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39199 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39200 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39201 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39202 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39203 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39204 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39205 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39206 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39207 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39208 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39209 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39210 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39211 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39212 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39213 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39214 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39215 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39216 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39217 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39218 25430 2019-11-14 11:00:38 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:38 +39219 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39220 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39221 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39222 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39223 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39224 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39225 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39226 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39227 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39228 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39229 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39230 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39231 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39232 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39233 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39234 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39235 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39236 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39237 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39238 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39239 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39240 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39241 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39242 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39243 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39244 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39245 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39246 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39247 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39248 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39249 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39250 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39251 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39252 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39253 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39254 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39255 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39256 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39257 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39258 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39259 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39260 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39261 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39262 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39263 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39264 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39265 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39266 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39267 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39268 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39269 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39270 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39271 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39272 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39273 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39274 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39275 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39276 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39277 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39278 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39279 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39280 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39281 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39282 25430 2019-11-14 11:00:39 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39283 25430 2019-11-14 11:00:39 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39284 25430 2019-11-14 11:00:39 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39285 25430 2019-11-14 11:00:39 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39286 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39287 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39288 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39289 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39290 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39291 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39292 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39293 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39294 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39295 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39296 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39297 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39298 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39299 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39300 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39301 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39302 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39303 25430 2019-11-14 11:00:39 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39304 25430 2019-11-14 11:00:39 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39305 25430 2019-11-14 11:00:39 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:39 +39306 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39307 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39308 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39309 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39310 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39311 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39312 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39313 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39314 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39315 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39316 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39317 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39318 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39319 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39320 25430 2019-11-14 11:00:40 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39321 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39322 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39323 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39324 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39325 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39326 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39327 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39328 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39329 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39330 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39331 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39332 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39333 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39334 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39335 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39336 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39337 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39338 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39339 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39340 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39341 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39342 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39343 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39344 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39345 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39346 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39347 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39348 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39349 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39350 25433 2019-11-14 11:00:40 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39351 25433 2019-11-14 11:00:40 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39352 25433 2019-11-14 11:00:40 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39353 25431 2019-11-14 11:00:40 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39354 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39355 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39356 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39357 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39358 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39359 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39360 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39361 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39362 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39363 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39364 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39365 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39366 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39367 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39368 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39369 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39370 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39371 25431 2019-11-14 11:00:40 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39372 25431 2019-11-14 11:00:40 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39373 25431 2019-11-14 11:00:40 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39374 25431 2019-11-14 11:00:40 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39375 25431 2019-11-14 11:00:40 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39376 25431 2019-11-14 11:00:40 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39377 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39378 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39379 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39380 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39381 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39382 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39383 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39384 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39385 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39386 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39387 25431 2019-11-14 11:00:40 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:40 +39388 25431 2019-11-14 11:00:41 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39389 25431 2019-11-14 11:00:41 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39390 25431 2019-11-14 11:00:41 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39391 25431 2019-11-14 11:00:41 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39392 25431 2019-11-14 11:00:41 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39393 25431 2019-11-14 11:00:41 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39394 25431 2019-11-14 11:00:41 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39395 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39396 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39397 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39398 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39399 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39400 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39401 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39402 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39403 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39404 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39405 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39406 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39407 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39408 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39409 25431 2019-11-14 11:00:41 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39410 25431 2019-11-14 11:00:41 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39411 25431 2019-11-14 11:00:41 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39412 25431 2019-11-14 11:00:41 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39413 25431 2019-11-14 11:00:41 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39414 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39415 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39416 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39417 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39418 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39419 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39420 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39421 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39422 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39423 25431 2019-11-14 11:00:41 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39424 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39425 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39426 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39427 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39428 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39429 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39430 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39431 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39432 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39433 25431 2019-11-14 11:00:41 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39434 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39435 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39436 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39437 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39438 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39439 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39440 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39441 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39442 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39443 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39444 25431 2019-11-14 11:00:41 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39445 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39446 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39447 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39448 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39449 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39450 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39451 25431 2019-11-14 11:00:41 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39452 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39453 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39454 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39455 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39456 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39457 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39458 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39459 25431 2019-11-14 11:00:41 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39460 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39461 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39462 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39463 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39464 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39465 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39466 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39467 25431 2019-11-14 11:00:41 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39468 25431 2019-11-14 11:00:41 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39469 25431 2019-11-14 11:00:41 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39470 25431 2019-11-14 11:00:41 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39471 25431 2019-11-14 11:00:41 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39472 25431 2019-11-14 11:00:41 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39473 25431 2019-11-14 11:00:41 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39474 25431 2019-11-14 11:00:41 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39475 25431 2019-11-14 11:00:41 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:41 +39476 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39477 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39478 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39479 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39480 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39481 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39482 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39483 25431 2019-11-14 11:00:42 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39484 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39485 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39486 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39487 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39488 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39489 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39490 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39491 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39492 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39493 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39494 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39495 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39496 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39497 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39498 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39499 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39500 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39501 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39502 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39503 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39504 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39505 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39506 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39507 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39508 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39509 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39510 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39511 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39512 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39513 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39514 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39515 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39516 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39517 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39518 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39519 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39520 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39521 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39522 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39523 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39524 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39525 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39526 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39527 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39528 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39529 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39530 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39531 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39532 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39533 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39534 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39535 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39536 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39537 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39538 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39539 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39540 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39541 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39542 25432 2019-11-14 11:00:42 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39543 25432 2019-11-14 11:00:42 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39544 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39545 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39546 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39547 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39548 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39549 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39550 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39551 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39552 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39553 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39554 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39555 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39556 25432 2019-11-14 11:00:42 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:42 +39557 25432 2019-11-14 11:00:43 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39558 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39559 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39560 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39561 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39562 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39563 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39564 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39565 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39566 25432 2019-11-14 11:00:43 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39567 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39568 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39569 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39570 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39571 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39572 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39573 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39574 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39575 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39576 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39577 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39578 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39579 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39580 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39581 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39582 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39583 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39584 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39585 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39586 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39587 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39588 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39589 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39590 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39591 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39592 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39593 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39594 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39595 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39596 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39597 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39598 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39599 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39600 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39601 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39602 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39603 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39604 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39605 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39606 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39607 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39608 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39609 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39610 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39611 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39612 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39613 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39614 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39615 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39616 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39617 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39618 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39619 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39620 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39621 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39622 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39623 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39624 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39625 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39626 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39627 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39628 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39629 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39630 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39631 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39632 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39633 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39634 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39635 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39636 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39637 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39638 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39639 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39640 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39641 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39642 25432 2019-11-14 11:00:43 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:43 +39643 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39644 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39645 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39646 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39647 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39648 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39649 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39650 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39651 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39652 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39653 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39654 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39655 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39656 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39657 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39658 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39659 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39660 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39661 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39662 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39663 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39664 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39665 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39666 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39667 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39668 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39669 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39670 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39671 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39672 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39673 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39674 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39675 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39676 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39677 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39678 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39679 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39680 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39681 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39682 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39683 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39684 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39685 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39686 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39687 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39688 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39689 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39690 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39691 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39692 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39693 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39694 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39695 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39696 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39697 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39698 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39699 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39700 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39701 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39702 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39703 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39704 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39705 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39706 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39707 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39708 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39709 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39710 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39711 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39712 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39713 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39714 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39715 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39750 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39716 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39717 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39718 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39719 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39720 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39721 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39722 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39723 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39724 25432 2019-11-14 11:00:44 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39725 25432 2019-11-14 11:00:44 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39726 25432 2019-11-14 11:00:44 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:44 +39727 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39728 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39729 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39730 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39731 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39732 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39733 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39734 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39735 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39736 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39737 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39738 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39739 25434 2019-11-14 11:00:45 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39740 25434 2019-11-14 11:00:45 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39741 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39742 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39743 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39744 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39745 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39746 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39747 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39748 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39749 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39751 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39752 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39753 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39754 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39755 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39756 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39757 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39758 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39759 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39760 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39761 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39762 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39763 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39764 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39765 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39766 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39767 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39768 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39769 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39770 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39771 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39772 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39773 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39774 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39775 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39776 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39777 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39778 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39779 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39780 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39781 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39782 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39783 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39784 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39785 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39786 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39787 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39788 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39789 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39790 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39791 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39792 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39793 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39794 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39795 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39796 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39797 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39798 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39799 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39800 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39801 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39802 25430 2019-11-14 11:00:45 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:45 +39803 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39804 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39805 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39806 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39807 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39808 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39809 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39810 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39811 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39812 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39813 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39814 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39815 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39816 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39817 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39818 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39819 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39820 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39821 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39822 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39823 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39824 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39825 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39826 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39827 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39828 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39829 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39830 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39831 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39832 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39833 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39834 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39835 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39836 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39837 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39838 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39839 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39840 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39841 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39842 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39843 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39844 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39845 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39846 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39847 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39848 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39849 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39850 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39851 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39852 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39853 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39854 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39855 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39856 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39857 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39858 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39859 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39860 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39861 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39862 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39863 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39864 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39865 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39866 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39867 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39868 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39869 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39870 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39871 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39872 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39873 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39874 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39875 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39876 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39877 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39878 25430 2019-11-14 11:00:46 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39879 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39880 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39881 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39882 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39883 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39884 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39885 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39886 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39887 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39888 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39889 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39890 25430 2019-11-14 11:00:46 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:46 +39891 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39892 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39893 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39894 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39895 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39896 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39897 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39898 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39899 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39900 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39901 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39902 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39903 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39904 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39905 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39906 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39907 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39908 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39909 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39910 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39911 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39912 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39913 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39914 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39915 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39916 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39917 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39918 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39919 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39920 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39921 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39922 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39923 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39924 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39925 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39926 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39927 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39928 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39929 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39930 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39931 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39932 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39933 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39934 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39935 25430 2019-11-14 11:00:47 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39936 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39937 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39938 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39939 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39940 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39941 25430 2019-11-14 11:00:47 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39942 25430 2019-11-14 11:00:47 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39943 25430 2019-11-14 11:00:47 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39944 25430 2019-11-14 11:00:47 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39945 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39946 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39947 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39948 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39949 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39950 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39951 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39952 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39953 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39954 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39955 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39956 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39957 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39958 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39959 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39960 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39961 25430 2019-11-14 11:00:47 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39962 25430 2019-11-14 11:00:47 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39963 25430 2019-11-14 11:00:47 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39964 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39965 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39966 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39967 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39968 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39969 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39970 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39971 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39972 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39973 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39974 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39975 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39976 25430 2019-11-14 11:00:47 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:47 +39977 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39978 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39979 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39980 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39981 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39982 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39983 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39984 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39985 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39986 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39987 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39988 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39989 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39990 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39991 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39992 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39993 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39994 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39995 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39996 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39997 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39998 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +39999 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40000 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40001 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40002 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40003 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40004 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40005 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40006 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40007 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40008 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40009 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40010 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40011 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40012 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40013 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40014 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40015 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40016 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40017 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40018 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40019 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40020 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40021 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40022 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40023 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40024 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40025 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40026 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40027 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40028 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40029 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40030 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40031 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40032 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40033 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40034 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40035 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40036 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40037 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40038 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40039 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40040 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40041 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40042 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40043 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40044 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40045 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40046 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40047 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40048 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40049 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40050 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40051 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40052 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40053 25430 2019-11-14 11:00:48 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40054 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40055 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40056 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40057 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40058 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40059 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40060 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40061 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40062 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40063 25430 2019-11-14 11:00:48 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:48 +40064 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40065 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40066 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40067 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40068 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40069 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40070 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40071 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40072 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40073 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40074 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40075 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40076 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40077 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40078 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40079 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40080 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40081 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40082 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40083 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40084 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40085 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40086 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40087 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40088 25430 2019-11-14 11:00:49 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40089 25430 2019-11-14 11:00:49 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40090 25430 2019-11-14 11:00:49 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40091 25430 2019-11-14 11:00:49 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40092 25430 2019-11-14 11:00:49 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40093 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40094 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40095 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40096 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40097 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40098 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40099 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40100 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40101 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40102 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40103 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40104 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40105 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40106 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40107 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40108 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40109 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40110 25430 2019-11-14 11:00:49 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40111 25430 2019-11-14 11:00:49 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40112 25430 2019-11-14 11:00:49 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40113 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40114 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40115 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40116 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40117 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40118 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40119 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40120 25430 2019-11-14 11:00:49 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40121 25430 2019-11-14 11:00:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40122 25430 2019-11-14 11:00:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40123 25430 2019-11-14 11:00:49 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40124 25430 2019-11-14 11:00:49 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40125 25430 2019-11-14 11:00:49 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40126 25430 2019-11-14 11:00:49 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40127 25430 2019-11-14 11:00:49 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40128 25430 2019-11-14 11:00:49 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40129 25430 2019-11-14 11:00:49 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40130 25430 2019-11-14 11:00:49 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40131 25430 2019-11-14 11:00:49 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40132 25430 2019-11-14 11:00:49 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40133 25430 2019-11-14 11:00:49 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40134 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40135 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40136 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40137 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40138 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40139 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40140 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40141 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40142 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40143 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40144 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40145 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40146 25430 2019-11-14 11:00:49 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40147 25430 2019-11-14 11:00:49 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40148 25430 2019-11-14 11:00:49 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40149 25430 2019-11-14 11:00:49 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40150 25430 2019-11-14 11:00:49 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:49 +40151 25430 2019-11-14 11:00:50 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40152 25430 2019-11-14 11:00:50 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40153 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40154 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40155 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40156 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40157 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40158 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40159 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40160 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40161 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40162 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40163 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40164 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40165 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40166 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40167 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40168 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40169 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40170 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40171 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40172 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40173 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40174 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40175 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40176 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40177 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40178 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40179 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40180 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40181 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40182 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40183 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40184 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40185 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40186 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40187 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40188 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40189 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40190 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40191 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40192 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40193 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40194 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40195 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40196 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40197 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40198 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40199 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40200 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40201 25430 2019-11-14 11:00:50 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40202 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40203 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40204 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40205 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40206 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40207 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40208 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40209 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40210 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40211 25430 2019-11-14 11:00:50 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40212 25430 2019-11-14 11:00:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40213 25430 2019-11-14 11:00:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40214 25430 2019-11-14 11:00:50 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40215 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40216 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40217 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40218 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40219 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40220 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40221 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40222 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40223 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40224 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40225 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40226 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40227 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40228 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40229 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40230 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40231 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40232 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40233 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40234 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40235 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40236 25433 2019-11-14 11:00:50 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:50 +40237 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40238 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40239 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40240 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40241 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40242 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40243 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40244 25433 2019-11-14 11:00:51 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40245 25433 2019-11-14 11:00:51 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40246 25433 2019-11-14 11:00:51 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40247 25431 2019-11-14 11:00:51 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40248 25431 2019-11-14 11:00:51 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40249 25431 2019-11-14 11:00:51 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40250 25431 2019-11-14 11:00:51 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40251 25431 2019-11-14 11:00:51 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40252 25431 2019-11-14 11:00:51 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40253 25431 2019-11-14 11:00:51 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40254 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40255 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40256 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40257 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40258 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40259 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40260 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40261 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40262 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40263 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40264 25431 2019-11-14 11:00:51 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40265 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40266 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40267 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40268 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40269 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40270 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40271 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40272 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40273 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40274 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40275 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40276 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40277 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40278 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40279 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40280 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40281 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40282 25431 2019-11-14 11:00:51 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40283 25431 2019-11-14 11:00:51 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40284 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40285 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40286 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40287 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40288 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40289 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40290 25431 2019-11-14 11:00:51 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40291 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40292 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40293 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40294 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40295 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40296 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40297 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40298 25431 2019-11-14 11:00:51 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40299 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40300 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40301 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40302 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40303 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40304 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40305 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40306 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40307 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40308 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40309 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40310 25431 2019-11-14 11:00:51 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40311 25431 2019-11-14 11:00:51 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40312 25431 2019-11-14 11:00:51 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40313 25431 2019-11-14 11:00:51 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40314 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40315 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40316 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40317 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40318 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40319 25431 2019-11-14 11:00:51 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:51 +40320 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40321 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40322 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40323 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40324 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40325 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40326 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40327 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40328 25431 2019-11-14 11:00:52 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40329 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40330 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40331 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40332 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40333 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40334 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40335 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40336 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40337 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40338 25431 2019-11-14 11:00:52 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40339 25431 2019-11-14 11:00:52 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40340 25431 2019-11-14 11:00:52 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40341 25431 2019-11-14 11:00:52 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40342 25431 2019-11-14 11:00:52 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40343 25431 2019-11-14 11:00:52 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40344 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40345 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40346 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40347 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40348 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40349 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40350 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40351 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40352 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40353 25431 2019-11-14 11:00:52 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40354 25431 2019-11-14 11:00:52 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40355 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40356 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40357 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40358 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40359 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40360 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40361 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40362 25431 2019-11-14 11:00:52 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40363 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40364 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40365 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40366 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40367 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40368 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40369 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40370 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40371 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40372 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40373 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40374 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40375 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40376 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40377 25431 2019-11-14 11:00:52 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40378 25432 2019-11-14 11:00:52 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40379 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40380 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40381 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40382 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40383 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40384 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40385 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40386 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40387 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40388 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40389 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40390 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40391 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40392 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40393 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40394 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40395 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40396 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40397 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40398 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40399 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40400 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40401 25432 2019-11-14 11:00:52 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 11:00:52 +40402 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40466 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40403 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40404 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40405 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40406 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40407 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40408 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40409 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40410 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40411 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40412 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40413 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40414 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40415 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40416 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40417 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40418 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40419 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40420 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40421 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40422 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40423 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40424 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40425 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40426 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40427 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40428 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40429 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40430 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40431 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40432 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40433 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40434 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40435 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40436 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40437 25432 2019-11-14 11:00:53 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40438 25432 2019-11-14 11:00:53 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40439 25432 2019-11-14 11:00:53 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40440 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40441 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40442 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40443 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40444 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40445 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40446 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40447 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40448 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40449 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40450 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40451 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40452 25432 2019-11-14 11:00:53 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40453 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40454 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40455 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40456 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40457 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40458 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40459 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40460 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40461 25432 2019-11-14 11:00:53 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40462 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40463 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40464 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40465 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40467 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40468 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40469 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40470 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40471 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40472 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40473 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40474 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40475 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40476 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40477 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40478 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40479 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40480 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40481 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40482 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40483 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40484 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40485 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40486 25432 2019-11-14 11:00:53 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:53 +40487 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40488 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40489 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40490 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40491 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40492 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40493 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40494 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40495 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40496 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40497 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40498 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40499 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40500 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40501 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40502 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40503 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40504 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40505 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40506 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40507 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40508 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40509 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40510 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40511 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40512 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40513 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40514 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40515 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40516 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40517 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40518 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40519 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40520 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40521 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40522 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40523 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40524 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40525 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40526 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40527 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40528 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40529 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40530 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40531 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40532 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40533 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40534 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40535 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40536 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40537 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40538 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40539 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40540 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40541 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40542 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40543 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40544 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40545 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40546 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40547 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40548 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40549 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40550 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40551 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40552 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40553 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40554 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40555 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40556 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40557 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40558 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40559 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40560 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40561 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40562 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40563 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40564 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40565 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40566 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40567 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40568 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40569 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40570 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40571 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40572 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40573 25432 2019-11-14 11:00:54 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:54 +40574 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40575 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40576 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40577 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40578 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40579 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40580 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40581 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40582 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40583 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40584 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40585 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40586 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40587 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40588 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40589 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40590 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40591 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40592 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40593 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40594 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40595 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40596 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40597 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40598 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40599 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40600 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40601 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40602 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40603 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40604 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40605 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40606 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40607 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40608 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40609 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40610 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40611 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40612 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40613 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40614 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40615 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40616 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40617 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40618 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40619 25432 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40620 25432 2019-11-14 11:00:55 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40621 25434 2019-11-14 11:00:55 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40622 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40623 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/CONTRIBUTING.md CONTRIBUTING.md 126 75 0 51 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40624 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/README.md README.md 87 58 0 29 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40625 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/README.md README.md 19 16 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40626 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40627 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/file-name-convention.md file-name-convention.md 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40628 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/where/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40629 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/who/organizational-diversity.md organizational-diversity.md 64 48 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40630 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/template-folder/common-template.md common-template.md 19 10 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40631 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/what/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40632 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/README.md README.md 7 4 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40633 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/images/holder.md holder.md 1 0 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40634 25434 2019-11-14 11:00:55 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-common/focus-areas/when/activity-dates-and-times.md activity-dates-and-times.md 40 25 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40635 25430 2019-11-14 11:00:55 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/index.html index.html 35 31 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40636 25430 2019-11-14 11:00:55 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/index.html index.html 57 20 33 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40637 25430 2019-11-14 11:00:55 HTML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/metrics_status.html metrics_status.html 4425 4425 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40638 25430 2019-11-14 11:00:55 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-tsx.d.ts shims-tsx.d.ts 13 10 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40639 25430 2019-11-14 11:00:55 TypeScript Typings /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/shims-vue.d.ts shims-vue.d.ts 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40640 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_images.scss _images.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40641 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/scss/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40642 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/date-range.scss date-range.scss 8 7 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40643 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_overrides.scss _overrides.scss 83 39 13 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40644 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_icons.scss _icons.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40645 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-sliders.scss _custom-sliders.scss 31 23 2 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40646 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_custom-forms.scss _custom-forms.scss 39 25 6 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40647 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_dropdown.scss _dropdown.scss 16 12 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40648 25430 2019-11-14 11:00:55 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_alert.scss _alert.scss 16 11 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:55 +40649 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_utilities.scss _utilities.scss 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40650 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_input-group.scss _input-group.scss 32 20 6 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40651 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_badge.scss _badge.scss 13 8 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40652 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_button-group.scss _button-group.scss 6 3 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40653 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_navbar.scss _navbar.scss 31 23 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40654 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/extras.scss extras.scss 441 374 4 63 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40655 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_variables.scss _variables.scss 342 215 41 86 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40656 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_reboot.scss _reboot.scss 57 37 7 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40657 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/shards-dashboards.scss shards-dashboards.scss 55 28 18 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40658 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_buttons.scss _buttons.scss 66 45 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40659 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_list-group.scss _list-group.scss 4 1 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40660 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/_card.scss _card.scss 23 16 3 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40661 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_card-post.scss _card-post.scss 114 83 14 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40662 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/plugins/_quill.scss _quill.scss 63 50 3 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40663 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/components/_error.scss _error.scss 33 26 2 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40664 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-content.scss _main-content.scss 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40665 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-overview.scss _blog-overview.scss 45 33 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40666 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_text.scss _text.scss 19 10 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40667 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_borders.scss _borders.scss 37 27 3 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40668 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/utilities/_general.scss _general.scss 14 9 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40669 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_blog-add-new-post.scss _blog-add-new-post.scss 8 5 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40670 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/templates/_common.scss _common.scss 110 85 7 18 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40671 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-footer.scss _main-footer.scss 28 22 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40672 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-sidebar.scss _main-sidebar.scss 232 185 12 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40673 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_page-header.scss _page-header.scss 29 21 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40674 25430 2019-11-14 11:00:56 Sass /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/blocks/_main-navbar.scss _main-navbar.scss 142 112 7 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40675 25430 2019-11-14 11:00:56 SVG /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/assets/images/shards-dashboards-logo.svg shards-dashboards-logo.svg 14 13 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40676 25430 2019-11-14 11:00:56 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/icon.css icon.css 23 21 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40677 25430 2019-11-14 11:00:56 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/chunk-vendors.7677be57.css chunk-vendors.7677be57.css 13 2 11 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40678 25430 2019-11-14 11:00:56 CSS /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/app.4b014d92.css app.4b014d92.css 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40679 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/setup.py setup.py 55 44 7 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40680 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40681 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40682 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/fastentrypoints.py fastentrypoints.py 114 69 44 1 1 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40683 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/runtime.py runtime.py 183 162 12 9 3 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40684 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/setup.py setup.py 45 42 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40685 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40686 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/test_model.py test_model.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40687 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/__init__.py __init__.py 28 16 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40688 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/repo.py repo.py 85 66 2 17 16 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40689 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40690 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40691 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40692 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/post-upgrade.py post-upgrade.py 59 47 1 11 5 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40693 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40694 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40695 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40696 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/worker.py worker.py 200 187 12 1 3 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40697 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/runtime.py runtime.py 166 145 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40698 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/worker.py worker.py 734 728 2 4 3 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40699 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/linux_badge_worker/runtime.py runtime.py 151 129 14 8 10 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40700 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/util.py util.py 129 105 19 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40701 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40702 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40703 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/user.py user.py 61 42 7 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40704 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40705 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/value_worker/worker.py worker.py 360 350 4 6 15 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40706 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/runtime.py runtime.py 163 143 13 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40707 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/metric_status_worker/runtime.py runtime.py 159 136 14 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40708 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/plugins/example_plugin/example_datasource.py example_datasource.py 7 6 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40709 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/runtime.py runtime.py 67 40 11 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40710 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/__init__.py __init__.py 30 0 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40711 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40712 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/user.py user.py 97 76 0 21 16 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40713 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/__init__.py __init__.py 6 4 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40714 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/setup.py setup.py 45 42 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40715 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/housekeeper/housekeeper.py housekeeper.py 250 240 3 7 5 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40716 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/__init__.py __init__.py 15 10 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40717 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40718 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/contributor.py contributor.py 562 543 16 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40719 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40720 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/common.py common.py 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40721 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_functions.py test_repo_meta_functions.py 88 46 20 22 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40722 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/message.py message.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40723 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40724 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40725 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/routes.py routes.py 42 31 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40726 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/experimental.py experimental.py 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40727 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/routes/broker.py broker.py 194 178 9 7 11 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40728 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/models/repo.py repo.py 48 25 12 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40729 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40730 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40731 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40732 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/run.py run.py 170 132 18 20 34 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40733 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/runtime.py runtime.py 158 137 13 8 8 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40734 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/repo_meta.py repo_meta.py 819 794 23 2 7 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40735 25430 2019-11-14 11:00:56 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:56 +40736 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_routes.py test_issue_routes.py 238 202 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40737 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/worker.py worker.py 1167 1113 41 13 23 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40738 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40739 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_functions.py test_experimental_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40740 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40741 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40742 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/tests/test_sample.py test_sample.py 4 2 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40743 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/github_worker/worker.py worker.py 1232 1144 38 50 120 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40744 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/test_api.py test_api.py 20 16 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40745 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/routes.py routes.py 821 812 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40746 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40747 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/db.py db.py 99 87 2 10 3 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40748 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/pull_request_worker/runtime.py runtime.py 178 157 14 7 8 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40749 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40750 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40751 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade03analyzecommit.py facade03analyzecommit.py 410 350 40 20 6 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40752 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/experimental/test_experimental_routes.py test_experimental_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40753 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/initial_scans.py initial_scans.py 55 51 3 1 5 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40754 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/repo_meta/test_repo_meta_routes.py test_repo_meta_routes.py 138 83 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40755 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40756 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metadata.py metadata.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40757 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade04postanalysiscleanup.py facade04postanalysiscleanup.py 198 107 37 54 5 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40758 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40759 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/director.py director.py 29 27 0 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40760 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/insight.py insight.py 35 23 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40761 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/cli/util.py util.py 77 45 20 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40762 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/augurplugin.py augurplugin.py 25 8 15 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40763 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/__init__.py __init__.py 13 4 5 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40764 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/issue.py issue.py 1063 1047 14 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40765 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/worker.py worker.py 441 439 1 1 11 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40766 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/conf.py conf.py 173 46 86 41 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40767 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40768 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade06analyze.py facade06analyze.py 192 114 49 29 5 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40769 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/sbom_populate.py sbom_populate.py 138 111 12 15 25 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40770 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/metrics.py metrics.py 63 52 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40771 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_functions.py test_insight_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40772 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade05repofetch.py facade05repofetch.py 346 241 45 60 19 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40773 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/insight/test_insight_routes.py test_insight_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40774 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40775 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_routes.py test_message_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40776 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_functions.py test_contributor_functions.py 53 35 5 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40777 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade07rebuildcache.py facade07rebuildcache.py 831 667 66 98 22 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40778 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/application.py application.py 330 292 20 18 13 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40779 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/platform.py platform.py 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40780 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/test_contributor_routes.py test_contributor_routes.py 63 51 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40781 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade02utilitymethods.py facade02utilitymethods.py 109 49 35 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40782 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/util.py util.py 363 345 16 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40783 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade01config.py facade01config.py 439 270 77 92 26 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40784 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/test_message_functions.py test_message_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40785 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40786 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/print-version.py print-version.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40787 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40788 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/runtime.py runtime.py 160 142 12 6 7 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40789 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_routes.py test_util_routes.py 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40790 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_routes.py test_platform_routes.py 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40791 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/platform/test_platform_functions.py test_platform_functions.py 9 8 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40792 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/insight_worker/worker.py worker.py 617 602 13 2 16 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40793 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/test_util_functions.py test_util_functions.py 14 8 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40794 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/make_config.py make_config.py 188 168 0 20 23 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40795 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/facade_worker/facade00mainprogram.py facade00mainprogram.py 420 378 36 6 10 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40796 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/util/routes.py routes.py 283 272 8 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40797 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/contributor/routes.py routes.py 342 334 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40798 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/repo_info_worker/__init__.py __init__.py 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40799 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/test_issue_functions.py test_issue_functions.py 149 81 30 38 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40800 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/message/routes.py routes.py 6 2 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40801 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/server.py server.py 463 446 11 6 1 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40802 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_functions.py test_commit_functions.py 18 14 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40803 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/test_commit_routes.py test_commit_routes.py 44 35 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40804 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40805 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/routes.py routes.py 102 90 9 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40806 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/commit/commit.py commit.py 202 147 48 7 12 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40807 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/issue/routes.py routes.py 965 957 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40808 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/pull_request.py pull_request.py 383 375 6 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40809 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/server.py server.py 231 190 14 27 18 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40810 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_functions.py test_pull_request_functions.py 28 19 3 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40811 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/__init__.py __init__.py 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40812 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/test_pull_request_routes.py test_pull_request_routes.py 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40813 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/metrics/pull_request/routes.py routes.py 379 371 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40814 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/env.py env.py 67 47 11 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40815 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/a051167419fa_add_admin_to_user_name_to_repogroup.py a051167419fa_add_admin_to_user_name_to_repogroup.py 30 12 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40816 25430 2019-11-14 11:00:57 Python /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/versions/2eaa930b1f5a_create_basic_tables.py 2eaa930b1f5a_create_basic_tables.py 71 53 12 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40817 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/requirements.txt requirements.txt 100 100 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40818 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_history.txt contributors_history.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40819 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/exclude.txt exclude.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40820 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights_records.txt repo_insights_records.txt 17 17 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40821 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_group_insights.txt repo_group_insights.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40822 25430 2019-11-14 11:00:57 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups_list_serve.txt repo_groups_list_serve.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:57 +40823 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_monthly.txt dm_repo_group_monthly.txt 386 386 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40824 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_groups.txt repo_groups.txt 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40825 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_dependencies.txt library_dependencies.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40826 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_meta.txt repo_meta.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40827 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/library_version.txt library_version.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40828 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_reviewers.txt pull_request_reviewers.txt 248 248 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40829 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_insights.txt repo_insights.txt 174 174 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40830 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors_aliases.txt contributors_aliases.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40831 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_assignees.txt issue_assignees.txt 406 406 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40832 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_assignees.txt pull_request_assignees.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40833 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_labels.txt pull_request_labels.txt 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40834 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/libraries.txt libraries.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40835 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex-raw.txt ex-raw.txt 3173 2667 0 506 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40836 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_annual.txt dm_repo_group_annual.txt 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40837 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/platform.txt platform.txt 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40838 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_info.txt repo_info.txt 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40839 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributor_affiliations.txt contributor_affiliations.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40840 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_weekly.txt dm_repo_weekly.txt 803 803 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40841 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_group_weekly.txt dm_repo_group_weekly.txt 776 776 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40842 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_labels.txt issue_labels.txt 563 563 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40843 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_monthly.txt dm_repo_monthly.txt 410 410 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40844 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_repo.txt pull_request_repo.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40845 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_teams.txt pull_request_teams.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40846 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repos_fetch_log.txt repos_fetch_log.txt 35 35 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40847 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_ghtorrent_map.txt repo_ghtorrent_map.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40848 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/analysis_log.txt analysis_log.txt 60 60 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40849 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_labor.txt repo_labor.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40850 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo.txt repo.txt 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40851 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commit_parents.txt commit_parents.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40852 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_test_coverage.txt repo_test_coverage.txt 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40853 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/dm_repo_annual.txt dm_repo_annual.txt 125 125 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40854 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/chaoss_metric_status.txt chaoss_metric_status.txt 80 80 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40855 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_message_ref.txt pull_request_message_ref.txt 584 584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40856 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/contributors.txt contributors.txt 233 233 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40857 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_meta.txt pull_request_meta.txt 910 910 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40858 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_message_ref.txt issue_message_ref.txt 2383 2383 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40859 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_requests.txt pull_requests.txt 545 545 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40860 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issues.txt issues.txt 979 979 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40861 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/pull_request_events.txt pull_request_events.txt 3554 3554 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40862 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/message.txt message.txt 2967 2967 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40863 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/issue_events.txt issue_events.txt 7584 7584 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40864 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/repo_badging.txt repo_badging.txt 1466 1466 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40865 25430 2019-11-14 11:00:58 Plain Text /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/data/commits.txt commits.txt 20946 20946 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40866 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40867 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40868 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40869 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40870 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40871 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40872 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40873 25430 2019-11-14 11:00:58 License /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40874 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/facade_worker/README.rst README.rst 83 57 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40875 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/insight_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40876 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/metric_status_worker/README.rst README.rst 70 47 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40877 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/linux_badge_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40878 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/pull_request_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40879 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/repo_info_worker/README.rst README.rst 104 73 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40880 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/github_worker/README.rst README.rst 32 22 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40881 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.db.rst augur.cli.db.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40882 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/docker-install.rst docker-install.rst 49 36 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40883 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/make-commands.rst make-commands.rst 167 119 0 48 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40884 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/frontend.rst frontend.rst 206 153 0 53 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40885 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/frontend.rst frontend.rst 154 119 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40886 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/deployment.rst deployment.rst 70 45 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40887 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.server.Server.rst augur.server.Server.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40888 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.runtime.rst augur.runtime.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40889 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture-toc.rst architecture-toc.rst 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40890 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.routes.broker.rst augur.routes.broker.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40891 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/augur-commands.rst augur-commands.rst 128 85 0 43 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40892 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/usage/usage-toc.rst usage-toc.rst 15 10 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40893 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.util.rst augur.util.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40894 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.application.Application.rst augur.application.Application.rst 42 25 0 17 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40895 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.housekeeper.housekeeper.Housekeeper.rst augur.housekeeper.housekeeper.Housekeeper.rst 28 14 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40896 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/application/augur.augurplugin.AugurPlugin.rst augur.augurplugin.AugurPlugin.rst 24 10 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40961 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurCards.vue AugurCards.vue 96 90 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40897 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/development-guide/development-guide-toc.rst development-guide-toc.rst 10 6 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40898 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/2-org-engaged.rst 2-org-engaged.rst 77 53 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40899 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/4-oss.rst 4-oss.rst 75 51 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40900 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases-toc.rst use-cases-toc.rst 22 18 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40901 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/3-foundation.rst 3-foundation.rst 78 54 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40902 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/overview.rst overview.rst 68 40 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40903 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/augur.config.json-explained.rst augur.config.json-explained.rst 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40904 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/python.rst python.rst 52 41 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40905 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/index.rst index.rst 23 18 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40906 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/library-documentation-toc.rst library-documentation-toc.rst 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40907 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/function.rst function.rst 276 197 0 79 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40908 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/architecture.rst architecture.rst 48 38 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40909 25430 2019-11-14 11:00:58 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/create-a-metric-toc.rst create-a-metric-toc.rst 16 11 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:58 +40910 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/architecture/data-model.rst data-model.rst 98 75 0 23 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40911 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/use-cases/1-org-outside.rst 1-org-outside.rst 80 56 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40912 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/create-a-metric/endpoint.rst endpoint.rst 164 112 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40913 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/getting-started-toc.rst getting-started-toc.rst 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40914 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/what-is-augur.rst what-is-augur.rst 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40915 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/getting-started/installation.rst installation.rst 99 68 0 31 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40916 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/worker-details.rst worker-details.rst 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40917 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.run.rst augur.cli.run.rst 28 9 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40918 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.experimental.experimental.rst augur.metrics.experimental.experimental.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40919 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/data-collection-toc.rst data-collection-toc.rst 20 11 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40920 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.pull_request.pull_request.rst augur.metrics.pull_request.pull_request.rst 28 12 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40921 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.contributor.contributor.rst augur.metrics.contributor.contributor.rst 26 10 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40922 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.commit.commit.rst augur.metrics.commit.commit.rst 25 9 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40923 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.platform.platform.rst augur.metrics.platform.platform.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40924 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/data-collection/starting-collection-workers.rst starting-collection-workers.rst 80 65 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40925 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.message.message.rst augur.metrics.message.message.rst 22 6 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40926 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/cli/augur.cli.util.rst augur.cli.util.rst 16 3 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40927 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.issue.issue.rst augur.metrics.issue.issue.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40928 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.util.util.rst augur.metrics.util.util.rst 31 15 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40929 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.insight.insight.rst augur.metrics.insight.insight.rst 23 7 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40930 25430 2019-11-14 11:00:59 ReStructuredText /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/source/library-documentation/metrics/augur.metrics.repo_meta.repo_meta.rst augur.metrics.repo_meta.repo_meta.rst 40 24 0 16 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40931 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localstart.sh augur_localstart.sh 26 16 4 6 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40932 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/workers.sh workers.sh 32 24 2 6 3 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40933 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/db_load.sh db_load.sh 52 49 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40934 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_localkill.sh augur_localkill.sh 22 12 7 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40935 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/make_schema.sh make_schema.sh 4 3 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40936 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augurkill.sh augurkill.sh 20 12 5 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40937 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/config.sh config.sh 39 35 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40938 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/augur_nginxstart.sh augur_nginxstart.sh 37 31 1 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40939 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/control/killinsightworker.sh killinsightworker.sh 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40940 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/frontend.sh frontend.sh 20 17 1 2 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40941 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/prestart.sh prestart.sh 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40942 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/backend.sh backend.sh 13 10 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40943 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/install.sh install.sh 80 64 7 9 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40944 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/docs.sh docs.sh 10 6 1 3 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40945 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/checks.sh checks.sh 107 98 1 8 11 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40946 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/rebuild.sh rebuild.sh 20 11 4 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40947 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/nomos.sh nomos.sh 44 40 1 3 5 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40948 25430 2019-11-14 11:00:59 Shell /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/setup_db.sh setup_db.sh 190 173 2 15 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40949 25430 2019-11-14 11:00:59 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.eslintrc.js .eslintrc.js 8 8 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40950 25430 2019-11-14 11:00:59 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/scripts/install/webserver/web_config.js web_config.js 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40951 25430 2019-11-14 11:00:59 JavaScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router/router.js router.js 314 295 11 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40952 25430 2019-11-14 11:00:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/database/Dockerfile Dockerfile 18 10 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40953 25430 2019-11-14 11:00:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/Dockerfile Dockerfile 14 10 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40954 25430 2019-11-14 11:00:59 Dockerfile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/static-web/Dockerfile Dockerfile 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40955 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/layouts/Default.vue Default.vue 48 31 8 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40956 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoGroups.vue RepoGroups.vue 192 147 33 12 3 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40957 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/LoginForm.vue LoginForm.vue 47 39 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40958 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Spinner.vue Spinner.vue 145 116 0 29 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40959 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ValueCard.vue ValueCard.vue 38 33 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40960 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Workers.vue Workers.vue 163 116 29 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40962 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Errors.vue Errors.vue 18 16 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40963 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Repos.vue Repos.vue 194 132 44 18 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40964 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RepoOverview.vue RepoOverview.vue 400 275 73 52 5 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40965 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/RiskMetrics.vue RiskMetrics.vue 180 160 2 18 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40966 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Tables.vue Tables.vue 171 163 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40967 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/ExploreInsights.vue ExploreInsights.vue 83 67 0 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40968 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/About.vue About.vue 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40969 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ErrorPage.vue ErrorPage.vue 25 21 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40970 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoActivityCard.vue BaseRepoActivityCard.vue 62 53 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40971 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssusOverViewModal.vue IssusOverViewModal.vue 59 57 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40972 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/TabSelector.vue TabSelector.vue 90 79 0 11 6 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40973 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Home.vue Home.vue 18 16 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40974 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/EditConfig.vue EditConfig.vue 104 88 1 15 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40975 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/Dashboard.vue Dashboard.vue 504 379 72 53 64 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40976 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/IssuesCard.vue IssuesCard.vue 180 167 0 13 5 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40977 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/InspectInsight.vue InspectInsight.vue 475 394 29 52 42 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40978 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/OverviewCard.vue OverviewCard.vue 142 140 0 2 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40979 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GitCard.vue GitCard.vue 134 122 3 9 8 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40980 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/GroupOverview.vue GroupOverview.vue 199 116 68 15 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40981 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MetricsStatusCard.vue MetricsStatusCard.vue 206 184 0 22 15 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40982 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/MainControls.vue MainControls.vue 459 413 12 34 28 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40983 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/SingleComparison.vue SingleComparison.vue 377 289 49 39 4 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40984 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/views/AddNewPost.vue AddNewPost.vue 41 31 4 6 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40985 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/BaseRepoEcosystemCard.vue BaseRepoEcosystemCard.vue 68 57 1 10 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40986 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DiversityInclusionCard.vue DiversityInclusionCard.vue 37 32 0 5 1 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40987 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Tabs.vue Tabs.vue 69 67 0 2 5 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40988 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/HelloWorld.vue HelloWorld.vue 59 55 1 3 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40989 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/RiskCard.vue RiskCard.vue 78 78 0 0 12 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40990 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurApp.vue AugurApp.vue 44 36 1 7 0 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40991 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ProjectDropdown.vue ProjectDropdown.vue 268 232 12 24 28 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40992 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/GrowthMaturityDeclineCard.vue GrowthMaturityDeclineCard.vue 374 350 8 16 7 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40993 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/DownloadedReposCard.vue DownloadedReposCard.vue 170 158 4 8 17 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40994 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/AugurHeader.vue AugurHeader.vue 60 57 0 3 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40995 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ReposInGroup.vue ReposInGroup.vue 194 134 44 16 2 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40996 25430 2019-11-14 11:00:59 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/ExperimentalCard.vue ExperimentalCard.vue 184 164 3 17 6 Value Worker 0.0.1 scc 2019-11-14 11:00:59 +40997 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarCategories.vue SidebarCategories.vue 50 18 27 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +40998 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/Editor.vue Editor.vue 39 35 0 4 1 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +40999 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/add-new-post/SidebarActions.vue SidebarActions.vue 43 39 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41000 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CountryReports.vue CountryReports.vue 165 0 165 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41001 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/TopReferrals.vue TopReferrals.vue 95 80 4 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41002 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/SmallStats.vue SmallStats.vue 213 0 213 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41003 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/NewDraft.vue NewDraft.vue 46 34 4 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41004 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserDetails.vue UserDetails.vue 65 0 65 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41005 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/common/CompareControl.vue CompareControl.vue 486 437 9 40 17 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41006 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersByDeviceLite.vue UsersByDeviceLite.vue 117 0 117 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41007 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainFooter/MainFooter.vue MainFooter.vue 61 60 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41008 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/Discussions.vue Discussions.vue 126 0 126 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41009 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/blog/UsersOverview.vue UsersOverview.vue 158 0 158 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41010 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/MainNavbar.vue MainNavbar.vue 39 35 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41011 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/user-profile-lite/UserAccountDetails.vue UserAccountDetails.vue 108 79 10 19 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41012 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarNav.vue NavbarNav.vue 60 23 36 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41013 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainSidebar/MainSidebar.vue MainSidebar.vue 203 158 39 6 4 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41014 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarSearch.vue NavbarSearch.vue 71 67 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41015 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LinesOfCodeChart.vue LinesOfCodeChart.vue 224 210 0 14 24 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41016 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/layout/MainNavbar/NavbarToggle.vue NavbarToggle.vue 19 17 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41017 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DirectionalTimeChart.vue DirectionalTimeChart.vue 218 211 0 7 9 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41018 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LicenseTable.vue LicenseTable.vue 95 85 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41019 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/LineChart.vue LineChart.vue 97 84 0 13 3 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41020 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CiiTable.vue CiiTable.vue 86 76 0 10 5 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41021 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SparkChart.vue SparkChart.vue 103 90 2 11 8 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41022 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/GroupedBarChart.vue GroupedBarChart.vue 410 383 1 26 17 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41023 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/HorizontalBarChart.vue HorizontalBarChart.vue 359 320 0 39 33 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41024 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CountBlock.vue CountBlock.vue 76 66 0 10 3 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41025 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualLineChart.vue DualLineChart.vue 263 253 0 10 21 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41026 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TickChart.vue TickChart.vue 317 285 20 12 28 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41027 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DependencyOverview.vue DependencyOverview.vue 66 58 0 8 9 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41028 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DownloadCard.vue DownloadCard.vue 56 47 0 9 1 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41029 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/NormalizedStackedBarChart.vue NormalizedStackedBarChart.vue 382 350 16 16 7 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41030 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/IssueChart.vue IssueChart.vue 148 141 0 7 11 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41031 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DynamicLineChart.vue DynamicLineChart.vue 1128 1047 27 54 155 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41032 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/StackedBarChart.vue StackedBarChart.vue 148 129 0 19 18 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41033 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/EmptyChart.vue EmptyChart.vue 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41034 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BusFactor.vue BusFactor.vue 49 46 0 3 1 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41035 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/DualAxisContributions.vue DualAxisContributions.vue 299 264 0 35 26 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41036 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/SkeletonChart.vue SkeletonChart.vue 373 336 0 37 51 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41037 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/InsightChart.vue InsightChart.vue 105 97 3 5 4 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41038 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/TimeIntervalBarChart.vue TimeIntervalBarChart.vue 411 383 0 28 15 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41039 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CoverageCard.vue CoverageCard.vue 94 85 0 9 5 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41040 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/OneDimensionalStackedBarChart.vue OneDimensionalStackedBarChart.vue 298 255 1 42 33 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41041 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/BubbleChart.vue BubbleChart.vue 228 220 0 8 15 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41042 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/PieChart.vue PieChart.vue 224 194 0 30 4 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41043 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/CommitChart.vue CommitChart.vue 425 374 2 49 39 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41044 25430 2019-11-14 11:01:00 Vue /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/charts/MainInsight.vue MainInsight.vue 385 377 0 8 25 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41045 25430 2019-11-14 11:01:00 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_load_sample.csv repo_load_sample.csv 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41046 25430 2019-11-14 11:01:00 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/repo_group_load_sample.csv repo_group_load_sample.csv 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41047 25430 2019-11-14 11:01:00 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/companies.csv companies.csv 509 509 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41048 25430 2019-11-14 11:01:00 CSV /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/augur/data/name_gender.csv name_gender.csv 95027 95027 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41049 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.travis.yml .travis.yml 20 18 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41050 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/readthedocs.yml readthedocs.yml 26 11 10 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41051 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/environment.yml environment.yml 6 5 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41052 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/config.yml config.yml 45 23 8 14 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41053 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/release-drafter.yml release-drafter.yml 8 5 1 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41054 25430 2019-11-14 11:01:00 YAML /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/packaging/docker/docker-compose.yml docker-compose.yml 26 26 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41055 25430 2019-11-14 11:01:00 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.gitignore .gitignore 131 76 32 23 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41056 25430 2019-11-14 11:01:00 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/.gitignore .gitignore 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41057 25430 2019-11-14 11:01:00 gitignore /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/.gitignore .gitignore 30 20 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41058 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/1-schema.sql 1-schema.sql 6 3 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41059 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/0-all.sql 0-all.sql 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41060 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/3-augur_operations.sql 3-augur_operations.sql 139 100 30 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41061 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/4-spdx.sql 4-spdx.sql 980 569 309 102 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41062 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/5-seed-data.sql 5-seed-data.sql 130 109 7 14 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41063 25430 2019-11-14 11:01:00 SQL /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/persistence_schema/2-augur_data.sql 2-augur_data.sql 2922 2087 624 211 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41064 25430 2019-11-14 11:01:00 Mako /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/util/alembic/script.py.mako script.py.mako 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41065 25430 2019-11-14 11:01:00 Stylus /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/styles/augur.styl augur.styl 1937 1553 106 278 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41066 25430 2019-11-14 11:01:00 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/Makefile Makefile 142 99 12 31 9 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41067 25430 2019-11-14 11:01:00 Makefile /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/Makefile Makefile 20 10 6 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41068 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/package-lock.json package-lock.json 494 494 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41069 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/apidoc.json apidoc.json 7 7 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41070 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/dev-unstable-rails.postman_environment.json dev-unstable-rails.postman_environment.json 27 27 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41071 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/ex.json ex.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41072 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/test/api/Augur.postman_collection.json Augur.postman_collection.json 1244 1244 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41073 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tslint.json tslint.json 33 33 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41074 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tsconfig.json tsconfig.json 44 44 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41075 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package.json package.json 59 59 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41076 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/package-lock.json package-lock.json 18722 18722 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41077 25430 2019-11-14 11:01:00 JSON /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/components/Licenses.json Licenses.json 403 403 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41078 25430 2019-11-14 11:01:00 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/tests/unit/example.spec.ts example.spec.ts 13 12 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41079 25430 2019-11-14 11:01:00 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/router.ts router.ts 508 209 291 8 2 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41080 25430 2019-11-14 11:01:00 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/main.ts main.ts 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41081 25430 2019-11-14 11:01:00 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/Augur.ts Augur.ts 253 138 93 22 38 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41082 25430 2019-11-14 11:01:00 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurStats.ts AugurStats.ts 272 232 16 24 40 Value Worker 0.0.1 scc 2019-11-14 11:01:00 +41083 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/store.ts store.ts 20 14 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41084 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-newtwittertest.ts AugurAPI-newtwittertest.ts 538 423 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41085 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI.ts AugurAPI.ts 553 438 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41086 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/AugurAPI-neko.ts AugurAPI-neko.ts 536 421 60 55 56 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41087 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/index.ts index.ts 43 37 3 3 2 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41088 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/index.ts index.ts 34 32 0 2 2 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41089 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/getters.ts getters.ts 106 105 1 0 36 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41090 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/getters.ts getters.ts 123 115 1 7 62 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41091 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/mutations.ts mutations.ts 209 116 84 9 31 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41092 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/mutations.ts mutations.ts 129 56 62 11 15 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41093 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/compare/actions.ts actions.ts 143 130 2 11 42 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41094 25430 2019-11-14 11:01:01 TypeScript /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/src/store/modules/common/actions.ts actions.ts 296 265 20 11 57 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41095 25430 2019-11-14 11:01:01 Autoconf /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41096 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CONTRIBUTING.md CONTRIBUTING.md 27 19 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41097 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md 46 28 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41098 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/README.md README.md 48 28 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41099 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/workers/value_worker/README.md README.md 88 77 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41100 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/AugurContext.md AugurContext.md 30 26 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41101 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/docs/scratchpad/project-growth-maturity-decline.md project-growth-maturity-decline.md 40 38 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41102 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/README.md README.md 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41103 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/spdx-scanner/TODO.md TODO.md 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41104 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md PULL_REQUEST_TEMPLATE.md 2 1 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41105 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/frontend/README.md README.md 34 27 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41106 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/PULL_REQUEST_TEMPLATE/release.md release.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41107 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/bug_report.md bug_report.md 27 21 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41108 25430 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/10/github.com/chaoss/augur/.github/ISSUE_TEMPLATE/feature_request.md feature_request.md 17 12 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41109 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/licensing.md licensing.md 21 14 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41110 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/README.md README.md 114 74 0 40 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41111 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/ROADMAP.md ROADMAP.md 3 2 0 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41112 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/CONTRIBUTING.md CONTRIBUTING.md 78 41 0 37 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41113 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Bus_Factor.md Bus_Factor.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41114 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/readme.md readme.md 21 15 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41115 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Volume.md Issues_Volume.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41116 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/business-risk.md business-risk.md 36 25 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41117 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/code-quality.md code-quality.md 24 16 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41118 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/metricschema.md metricschema.md 52 48 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41119 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/transparency.md transparency.md 8 5 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41120 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.md template.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41121 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Test_Coverage.md Test_Coverage.md 58 38 0 20 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41122 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/security.md security.md 10 7 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41123 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Elephant_Factor.md Elephant_Factor.md 46 36 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41124 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Lines_of_Code.md Code_Lines_of_Code.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41125 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Committers.md Committers.md 51 37 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41126 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Declaration_Readme.md Language_Declaration_Readme.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41127 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Declared.md License_Declared.md 62 49 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41128 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Pull_Request_Process.md Pull_Request_Process.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41129 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Count.md License_Count.md 53 40 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41130 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Code_Complexity.md Code_Complexity.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41131 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/code-of-conduct.md code-of-conduct.md 115 88 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41132 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Software_Bill_of_Materials.md Software_Bill_of_Materials.md 64 51 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41133 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/focus-areas/README.md README.md 11 9 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41134 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Language_Source_Proportion.md Language_Source_Proportion.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41135 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Open_Age.md Issues_Open_Age.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41136 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/CII_Best_Practices.md CII_Best_Practices.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41137 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/License_Coverage.md License_Coverage.md 50 38 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41138 25433 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/Issues_Average_Resolution_Time.md Issues_Average_Resolution_Time.md 47 29 0 18 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41139 25433 2019-11-14 11:01:01 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41140 25433 2019-11-14 11:01:01 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-risk/metrics/template_folder/template.html template.html 1093 923 0 170 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41141 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/CONTRIBUTING.md CONTRIBUTING.md 168 121 0 47 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41142 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/community_components.md community_components.md 68 49 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41143 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/BUILDING.md BUILDING.md 299 234 0 65 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41144 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/README.md README.md 131 104 0 27 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41145 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/README.md README.md 195 163 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41146 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/README.md README.md 28 19 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41147 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/README.md README.md 632 494 0 138 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41148 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/README.md README.md 134 106 0 28 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41149 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/README.md README.md 136 102 0 34 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41150 25431 2019-11-14 11:01:01 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/README.md README.md 43 35 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41151 25431 2019-11-14 11:01:01 Autoconf /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/MANIFEST.in MANIFEST.in 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41152 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/aliases.json aliases.json 154 154 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41153 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/projects.json projects.json 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41154 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/aliases.json aliases.json 15 15 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41155 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/orgs.json orgs.json 10423 10423 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41156 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/default-grimoirelab-settings/organizations.json organizations.json 10625 10625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41157 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/repos_local.json repos_local.json 5 5 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41158 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/projects.json projects.json 113 113 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41159 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/projects.json projects.json 109 109 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41160 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data2.json data2.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41161 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data1.json data1.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41162 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/json/data0.json data0.json 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41163 25431 2019-11-14 11:01:01 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/manifest.json manifest.json 41 41 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41164 25431 2019-11-14 11:01:01 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/.gitignore .gitignore 6 6 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:01 +41165 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/setup.py setup.py 109 67 28 14 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41166 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/__init__.py __init__.py 1 1 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41167 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/grimoirelab/_version.py _version.py 2 1 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41168 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/bin/grimoirelab grimoirelab 66 41 22 3 1 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41169 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/utils/build_grimoirelab build_grimoirelab 965 941 22 2 30 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41170 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/check_panels.py check_panels.py 108 65 34 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41171 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/last_commits.py last_commits.py 77 38 25 14 6 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41172 25431 2019-11-14 11:01:02 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/raw2file.py raw2file.py 127 75 32 20 13 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41173 25431 2019-11-14 11:01:02 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/requirements.txt requirements.txt 16 16 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41174 25431 2019-11-14 11:01:02 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/HELP-US-OUT.txt HELP-US-OUT.txt 7 5 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41175 25431 2019-11-14 11:01:02 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/LICENSE LICENSE 674 553 0 121 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41176 25431 2019-11-14 11:01:02 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/LICENSE LICENSE 202 169 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41177 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/head.html head.html 60 39 10 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41178 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/index.html index.html 151 133 1 17 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41179 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/navigation.html navigation.html 36 28 5 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41180 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/about.html about.html 24 23 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41181 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/footer.html footer.html 44 41 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41182 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/built-with.html built-with.html 22 19 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41183 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/header.html header.html 30 21 9 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41184 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_includes/js.html js.html 18 6 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41185 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_layouts/default.html default.html 17 10 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41186 25431 2019-11-14 11:01:02 HTML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/index.html index.html 52 41 2 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41187 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_stacked.scss _stacked.scss 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41188 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_spinning.scss _spinning.scss 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41189 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_path.scss _path.scss 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41190 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_screen-reader.scss _screen-reader.scss 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41191 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_mixins.scss _mixins.scss 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41192 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_larger.scss _larger.scss 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41193 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_bordered-pulled.scss _bordered-pulled.scss 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41194 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_animated.scss _animated.scss 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41195 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_core.scss _core.scss 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41196 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/font-awesome.scss font-awesome.scss 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41197 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_fixed-width.scss _fixed-width.scss 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41198 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_rotated-flipped.scss _rotated-flipped.scss 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41199 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_list.scss _list.scss 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41200 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_variables.scss _variables.scss 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41201 25431 2019-11-14 11:01:02 Sass /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/scss/_icons.scss _icons.scss 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41202 25431 2019-11-14 11:01:02 Docker ignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/.dockerignore .dockerignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41203 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose.yml docker-compose.yml 66 60 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41204 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/identities.yaml identities.yaml 479 427 0 52 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41205 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu-grimoirelab.yaml menu-grimoirelab.yaml 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41206 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_config.yml _config.yml 12 9 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41207 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker-compose/docker-compose-secured.yml docker-compose-secured.yml 68 62 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41208 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/builtwith.yml builtwith.yml 10 6 4 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41209 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_build_tag.yml ansible_build_tag.yml 19 12 4 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41210 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/_data/projects.yml projects.yml 34 32 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41211 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/menu.yaml menu.yaml 197 197 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41212 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_release.yml ansible_release.yml 179 136 26 17 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41213 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose.yml docker-compose.yml 46 34 8 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41214 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/sg_roles_mapping.yml sg_roles_mapping.yml 35 26 2 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41215 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/ansible_push.yml ansible_push.yml 11 5 4 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41216 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/menu.yaml menu.yaml 319 319 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41217 25431 2019-11-14 11:01:02 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/docker-compose-local.yml docker-compose-local.yml 11 6 3 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41218 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/freelancer.less freelancer.less 434 397 4 33 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41219 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/screen-reader.less screen-reader.less 5 2 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41220 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/mixins.less mixins.less 37 35 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41221 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/fixed-width.less fixed-width.less 6 4 2 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41222 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/spinning.less spinning.less 29 24 2 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41223 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/core.less core.less 12 8 2 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41224 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/larger.less larger.less 13 9 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41225 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/icons.less icons.less 789 786 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41226 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/stacked.less stacked.less 20 17 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41227 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/less/variables.less variables.less 5 3 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41228 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/rotated-flipped.less rotated-flipped.less 20 12 4 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41229 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/variables.less variables.less 800 794 3 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41230 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/font-awesome.less font-awesome.less 18 13 4 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41231 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/animated.less animated.less 34 28 2 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41232 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/bordered-pulled.less bordered-pulled.less 25 17 3 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41233 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/mixins.less mixins.less 60 41 10 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41234 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/list.less list.less 19 16 2 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41235 25431 2019-11-14 11:01:02 LESS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/less/path.less path.less 15 11 3 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41236 25431 2019-11-14 11:01:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/do_release.sh do_release.sh 38 23 9 6 5 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41237 25431 2019-11-14 11:01:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-full.sh entrypoint-full.sh 88 70 9 9 14 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41238 25431 2019-11-14 11:01:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/entrypoint-secured.sh entrypoint-secured.sh 85 63 10 12 10 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41239 25431 2019-11-14 11:01:02 Shell /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/tests/init-raw.sh init-raw.sh 10 10 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41240 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-y.svg wizard-y.svg 96 94 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41241 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/wizard-w.svg wizard-w.svg 113 111 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41242 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/fonts/glyphicons-halflings-regular.svg glyphicons-halflings-regular.svg 288 288 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41243 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-perceval.svg leaflet-perceval.svg 5559 5557 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41244 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/fonts/fontawesome-webfont.svg fontawesome-webfont.svg 2671 2671 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41245 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-grimoirelab.svg leaflet-grimoirelab.svg 3135 3133 1 1 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41246 25431 2019-11-14 11:01:02 SVG /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/leaflets/leaflet-sortinghat-icse.svg leaflet-sortinghat-icse.svg 1934 1934 0 0 1 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41247 25431 2019-11-14 11:01:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-blue.css freelancer-blue.css 486 402 6 78 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41248 25431 2019-11-14 11:01:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer.css freelancer.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41249 25431 2019-11-14 11:01:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.css font-awesome.css 2337 2327 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41250 25431 2019-11-14 11:01:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/css/main.css main.css 46 40 1 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41251 25431 2019-11-14 11:01:02 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/freelancer-red.css freelancer-red.css 482 399 6 77 0 Value Worker 0.0.1 scc 2019-11-14 11:01:02 +41252 25431 2019-11-14 11:01:03 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/font-awesome/css/font-awesome.min.css font-awesome.min.css 4 1 3 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41253 25431 2019-11-14 11:01:03 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.min.css bootstrap.min.css 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41254 25431 2019-11-14 11:01:03 CSS /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/css/bootstrap.css bootstrap.css 7064 7050 14 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41255 25431 2019-11-14 11:01:03 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/stage stage 45 22 17 6 5 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41256 25431 2019-11-14 11:01:03 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/catwoman catwoman 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41257 25431 2019-11-14 11:01:03 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/atom_girl atom_girl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41258 25431 2019-11-14 11:01:03 BASH /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/releases/old/batgirl batgirl 7 6 1 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41259 25431 2019-11-14 11:01:03 XML /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/img/favicon/browserconfig.xml browserconfig.xml 2 2 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41260 25431 2019-11-14 11:01:03 Dockerfile /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docker/Dockerfile Dockerfile 57 38 7 12 6 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41261 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.min.js cbpAnimatedHeader.min.js 11 1 10 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41262 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/freelancer.js freelancer.js 37 24 9 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41263 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/main.js main.js 73 48 17 8 2 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41264 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/contact_me.js contact_me.js 73 59 9 5 1 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41265 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/classie.js classie.js 80 50 19 11 6 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41266 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/cbpAnimatedHeader.js cbpAnimatedHeader.js 44 28 10 6 4 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41267 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jqBootstrapValidation.js jqBootstrapValidation.js 912 732 96 84 121 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41268 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.min.js bootstrap.min.js 7 2 5 0 3 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41269 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/bootstrap.js bootstrap.js 2363 1588 193 582 448 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41270 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/ar/js/aframedc.js aframedc.js 3107 2368 428 311 273 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41271 25431 2019-11-14 11:01:03 JavaScript /mnt/md0/repos/testing-repos/20/github.com/chaoss/grimoirelab/docs/js/jquery.js jquery.js 4 3 1 0 15 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41272 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_lines.ipynb code_changes_lines.ipynb 615 615 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41273 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/new_contributors_of_commits.ipynb new_contributors_of_commits.ipynb 623 623 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41274 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_declined_github.ipynb reviews_declined_github.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41275 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews.ipynb reviews.ipynb 535 535 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41276 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_new_github.ipynb issues_new_github.ipynb 1007 1007 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41277 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/issues_closed_github.ipynb issues_closed_github.ipynb 1010 1010 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41278 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/open_issue_age.ipynb open_issue_age.ipynb 624 624 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41279 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/code_changes_lines_git.ipynb code_changes_lines_git.ipynb 331 331 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41280 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_declined_github.ipynb reviews_declined_github.ipynb 171 171 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41281 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_accepted_github.ipynb reviews_accepted_github.ipynb 167 167 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41282 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/reviews_accepted.ipynb reviews_accepted.ipynb 528 528 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41283 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks_df/code_changes_git.ipynb code_changes_git.ipynb 524 524 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41284 25432 2019-11-14 11:01:03 Jupyter /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/notebooks/reviews_github.ipynb reviews_github.ipynb 166 166 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41285 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data.json test_commits_data.json 21 21 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41286 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_commits_data_2.json test_commits_data_2.json 23 23 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41287 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_data.json test_issues_data.json 29 29 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41288 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_pulls_data.json test_pulls_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41289 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/data/test_issues_events_data.json test_issues_events_data.json 20 20 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41290 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/git-commits.json git-commits.json 2522 2522 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41291 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/pull_requests.json pull_requests.json 229 229 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41292 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues_events.json issues_events.json 241 241 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41293 25432 2019-11-14 11:01:03 JSON /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/issues.json issues.json 625 625 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41294 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/CONTRIBUTING.md CONTRIBUTING.md 73 48 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41295 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/README.md README.md 150 96 0 54 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41296 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/code-of-conduct.md code-of-conduct.md 5 3 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41297 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/gmd_metrics.md gmd_metrics.md 29 16 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41298 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/ROADMAP.md ROADMAP.md 87 57 0 30 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41299 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/meeting_notes.md meeting_notes.md 1471 1071 0 400 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41300 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/maintenership-position.md maintenership-position.md 75 50 0 25 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41301 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/README.md README.md 10 8 0 2 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41302 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/first-code-contributions.md first-code-contributions.md 119 81 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41303 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/template.md template.md 80 54 0 26 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41304 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/README.md README.md 79 58 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41305 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/use_cases/community-manager.md community-manager.md 220 149 0 71 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41306 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/README.md README.md 177 127 0 50 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41307 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/new-contributors-closing-issues.md new-contributors-closing-issues.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41308 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-participants.md pull-requests-participants.md 32 24 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41309 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Contributing_Organizations.md Contributing_Organizations.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41310 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merge-maintainer-response-duration.md pull-requests-merge-maintainer-response-duration.md 20 12 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41311 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-contributors-new.md pull-requests-contributors-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41312 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Closed.md Issues_Closed.md 111 72 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41313 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-code-reviews-contributors-new.md pull-requests-code-reviews-contributors-new.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41314 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-open-age.md issues-open-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41315 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Iteration.md Code_Review_Iteration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41316 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/forks.md forks.md 33 23 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41317 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Duration.md Reviews_Duration.md 113 75 0 38 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41318 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Initiated_Code_Reviews.md New_Contributors_Initiated_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41319 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews.md Reviews.md 108 72 0 36 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41320 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Email_List.md New_Contributors_Email_List.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41321 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-maintainership.md path-to-maintainership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41322 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-demographics.md contributor-demographics.md 35 24 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41323 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/copyright-declaration.md copyright-declaration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41324 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity.md community-activity.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41325 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-age.md update-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41326 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-diversity.md contributor-diversity.md 64 50 0 14 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41327 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-dependency.md user-dependency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41328 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-breadth.md contributor-breadth.md 46 33 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41329 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-reopened.md issues-reopened.md 92 77 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41330 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-duration.md issue-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41331 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/organizations-total-over-time.md organizations-total-over-time.md 48 37 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41332 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-all-vs-closed.md pull-requests-all-vs-closed.md 40 28 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41333 25432 2019-11-14 11:01:03 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-velocity.md release-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:03 +41334 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/test-coverage-percentage.md test-coverage-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41335 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/job-postings.md job-postings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41336 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/paid-developers.md paid-developers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41337 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Code_Reviews.md New_Contributors_Code_Reviews.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41338 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-rate.md update-rate.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41339 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bus-factor.md bus-factor.md 95 71 0 24 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41340 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Maintainer_Response_Duration.md Maintainer_Response_Duration.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41341 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/youtube-videos.md youtube-videos.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41342 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-note-completeness.md release-note-completeness.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41343 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-comments.md pull-requests-comments.md 29 22 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41344 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pony-factor.md pony-factor.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41345 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/known-vulnerabilities.md known-vulnerabilities.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41346 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-number-of-people-opening.md issues-number-of-people-opening.md 61 50 0 11 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41347 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes_Lines.md Code_Changes_Lines.md 112 80 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41348 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-package.md license-declaration-package.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41349 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/name_changes.md name_changes.md 18 15 0 3 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41350 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/watchers.md watchers.md 23 15 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41351 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-to-issue-average-time.md issue-first-response-to-issue-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41352 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Changes.md Code_Changes.md 91 58 0 33 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41353 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-changes.md maintainer-changes.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41354 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-non-code.md contribution-non-code.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41355 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/release-maturity.md release-maturity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41356 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributors-new-vs-maintainers.md contributors-new-vs-maintainers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41357 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commercial-offerings.md commercial-offerings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41358 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/software-downloads.md software-downloads.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41359 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/onion-layers.md onion-layers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41360 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-seniority.md contributor-seniority.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41361 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-open.md pull-requests-open.md 30 21 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41362 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors_Issues.md New_Contributors_Issues.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41363 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-bias.md language-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41364 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-first-response-percentile-time-distribution.md issue-first-response-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41365 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-importance.md contributor-importance.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41366 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/gatherings.md gatherings.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41367 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-onboarding.md contributor-onboarding.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41368 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/elephant-factor.md elephant-factor.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41369 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/installs.md installs.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41370 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/users-number-of-active.md users-number-of-active.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41371 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stars.md stars.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41372 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/organizations-new.md organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41373 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-modularity.md code-modularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41374 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-maintainer-response-duration.md issues-maintainer-response-duration.md 82 69 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41375 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-activity-level.md contributor-activity-level.md 45 36 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41376 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/templates/question_template.md question_template.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41377 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Code_Review_Efficiency.md Code_Review_Efficiency.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41378 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Accepted.md Reviews_Accepted.md 155 110 0 45 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41379 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/stack-overflow.md stack-overflow.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41380 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributors.md New_Contributors.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41381 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/pull-requests-merged-vs-closed.md pull-requests-merged-vs-closed.md 89 68 0 21 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41382 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_Active.md Issues_Active.md 99 67 0 32 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41383 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-activity--depricated.md community-activity--depricated.md 51 39 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41384 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/blog-posts.md blog-posts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41385 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/project-life-cycle.md project-life-cycle.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41386 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/contributors.md contributors.md 94 75 0 19 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41387 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-contributions-accepted-percentage.md code-contributions-accepted-percentage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41388 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-declaration-project.md license-declaration-project.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41389 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/sub-projects.md sub-projects.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41390 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/issue_resolution.md issue_resolution.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41391 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/README.md README.md 27 22 0 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41392 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/New_Contributor_Commits.md New_Contributor_Commits.md 29 20 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41393 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-merge-percentile-time-distribution.md code-merge-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41394 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issue_Resolution_Efficiency.md Issue_Resolution_Efficiency.md 31 21 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41395 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_process_quality.md code_development_process_quality.md 22 15 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41396 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/qualified-committers.md qualified-committers.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41397 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Issues_New.md Issues_New.md 126 85 0 41 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41398 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/followers.md followers.md 28 18 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41399 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/apache-maturity-model.md apache-maturity-model.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41400 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/issues-closed-resolution-duration.md issues-closed-resolution-duration.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41401 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/language-makeup.md language-makeup.md 43 33 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41402 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-comments.md issue-comments.md 49 37 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41403 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-conflicts.md license-conflicts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41404 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development.md code_development.md 149 110 0 39 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41405 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/downloads-of-non-software-artifacts.md downloads-of-non-software-artifacts.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41406 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-open-percentile-time-distribution.md issue-open-percentile-time-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41407 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_efficiency.md code_development_efficiency.md 24 17 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41408 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/Reviews_Declined.md Reviews_Declined.md 101 66 0 35 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41409 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bug-age.md bug-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41410 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/review-effiency.md review-effiency.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41411 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/community_growth.md community_growth.md 34 26 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41412 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/relative-activity.md relative-activity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41413 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/retrospectives.md retrospectives.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41414 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/commit-bias.md commit-bias.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41415 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/focus_areas/code_development_activity.md code_development_activity.md 23 16 0 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41416 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-total-over-time.md contributor-total-over-time.md 57 45 0 12 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41417 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/update-regularity.md update-regularity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41418 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-age.md contribution-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41419 25432 2019-11-14 11:01:04 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issues-submitted-closed.md issues-submitted-closed.md 37 27 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:04 +41420 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/leadership-demographics.md leadership-demographics.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41421 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-percentile-distribution.md maintainer-first-response-to-code-merge-request-percentile-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41422 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/unity.md unity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41423 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/issue-resolution-average-time.md issue-resolution-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41424 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/open-issues-time-average.md open-issues-time-average.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41425 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/transparency.md transparency.md 30 22 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41426 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/use-of-acronym.md use-of-acronym.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41427 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-first-response-to-code-merge-request-average-time.md maintainer-first-response-to-code-merge-request-average-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41428 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/rewards.md rewards.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41429 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/date.md date.md 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41430 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/path-to-leadership.md path-to-leadership.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41431 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-diversity.md contribution-diversity.md 58 43 0 15 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41432 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/roadmap.md roadmap.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41433 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/code-base-size.md code-base-size.md 47 38 0 9 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41434 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/pull-requests-over-time.md pull-requests-over-time.md 35 22 0 13 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41435 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/work-distribution.md work-distribution.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41436 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-identification-methods.md license-identification-methods.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41437 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/repository-size.md repository-size.md 60 50 0 10 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41438 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/v-index.md v-index.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41439 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/dependancy-depth.md dependancy-depth.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41440 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-velocity.md contribution-velocity.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41441 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-coverage.md license-coverage.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41442 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/community-age.md community-age.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41443 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/user-groups.md user-groups.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41444 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contribution-percentage-new.md contribution-percentage-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41445 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/maintainer-promotion.md maintainer-promotion.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41446 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/cii-best-practices-badge.md cii-best-practices-badge.md 19 11 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41447 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/role-definitions.md role-definitions.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41448 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/bugs-after-release.md bugs-after-release.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41449 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/sub-projects-total-over-time.md sub-projects-total-over-time.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41450 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/contributor-organizations-new.md contributor-organizations-new.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41451 25432 2019-11-14 11:01:05 Markdown /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/metrics/archived_metrics/license-count.md license-count.md 18 10 0 8 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41452 25432 2019-11-14 11:01:05 YAML /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.travis.yml .travis.yml 25 19 0 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41453 25432 2019-11-14 11:01:05 Plain Text /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/requirements.txt requirements.txt 4 4 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41454 25432 2019-11-14 11:01:05 License /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/LICENSE LICENSE 21 17 0 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41455 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/setup.py setup.py 44 19 21 4 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41456 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/commit_git.py commit_git.py 127 54 55 18 23 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41457 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/generate_output.py generate_output.py 208 169 33 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41458 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/open_issue_age_github.py open_issue_age_github.py 129 92 24 13 5 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41459 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/utils.py utils.py 65 19 38 8 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41460 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_accepted_github.py test_reviews_accepted_github.py 107 39 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41461 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_git.py test_code_changes_git.py 83 27 40 16 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41462 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_github.py test_reviews_github.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41463 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_git.py code_changes_git.py 65 23 31 11 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41464 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41465 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_accepted_github.py reviews_accepted_github.py 108 68 33 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41466 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_git.py test_code_changes_git.py 119 45 50 24 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41467 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41468 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/bin/analyze analyze 352 218 75 59 22 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41469 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_git.py code_changes_git.py 112 70 35 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41470 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/pullrequest_github.py pullrequest_github.py 78 22 46 10 4 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41471 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_code_changes_lines_git.py test_code_changes_lines_git.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41472 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/utils.py utils.py 67 19 38 10 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41473 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_commit.py test_commit.py 271 154 80 37 37 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41474 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_accepted_github.py reviews_accepted_github.py 67 23 31 13 4 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41475 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_github.py test_reviews_github.py 72 20 38 14 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41476 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_pullrequest_github.py test_pullrequest_github.py 116 45 49 22 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41477 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/new_contributors_of_commits_git.py new_contributors_of_commits_git.py 220 122 78 20 13 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41478 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_commit_git.py test_commit_git.py 270 144 81 45 33 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41479 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_conditions.py test_conditions.py 276 198 56 22 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41480 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41481 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/run_tests.py run_tests.py 33 8 21 4 1 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41482 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_declined_github.py test_reviews_declined_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41483 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/metric.py metric.py 55 8 41 6 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41484 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/commit_git.py commit_git.py 127 54 56 17 24 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41485 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_closed_github.py issues_closed_github.py 115 74 34 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41486 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41487 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/__init__.py __init__.py 0 0 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41488 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_duration_github.py reviews_duration_github.py 146 90 43 13 5 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41489 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_pullrequest_github.py test_pullrequest_github.py 113 43 49 21 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41490 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_github.py reviews_github.py 106 67 32 7 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41491 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/reviews_declined_github.py reviews_declined_github.py 112 82 25 5 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41492 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_open_issue_age_github.py test_open_issue_age_github.py 118 45 46 27 6 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41493 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_github.py reviews_github.py 59 18 30 11 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41494 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_code_changes_lines_git.py test_code_changes_lines_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41495 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/pullrequest_github.py pullrequest_github.py 77 22 45 10 4 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41496 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/code_changes_lines_git.py code_changes_lines_git.py 148 89 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41497 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_reviews_accepted_github.py test_reviews_accepted_github.py 69 20 35 14 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41498 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/metric.py metric.py 89 52 28 9 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41499 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/reviews_declined_github.py reviews_declined_github.py 64 34 25 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41500 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/conditions.py conditions.py 256 209 42 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41501 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_duration_github.py test_reviews_duration_github.py 109 40 45 24 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41502 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_new_github.py test_issues_new_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41503 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41504 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issues_new_github.py issues_new_github.py 90 73 11 6 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41505 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_metric.py test_metric.py 86 25 45 16 3 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41506 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/scripts/conditions.py conditions.py 258 210 43 5 0 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41507 25432 2019-11-14 11:01:05 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/code_changes_lines_git.py code_changes_lines_git.py 193 134 43 16 20 Value Worker 0.0.1 scc 2019-11-14 11:01:05 +41508 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_utils.py test_utils.py 101 57 35 9 2 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41509 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/code_df/issue_github.py issue_github.py 147 54 73 20 16 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41510 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_new_contributors_of_commits_git.py test_new_contributors_of_commits_git.py 107 38 48 21 3 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41511 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issues_closed_github.py test_issues_closed_github.py 114 43 48 23 3 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41512 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_reviews_declined_github.py test_reviews_declined_github.py 108 40 45 23 3 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41513 25432 2019-11-14 11:01:06 Python /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/implementations/tests/tests_df/test_issue_github.py test_issue_github.py 246 193 39 14 2 Value Worker 0.0.1 scc 2019-11-14 11:01:06 +41514 25432 2019-11-14 11:01:06 gitignore /mnt/md0/repos/testing-repos/20/github.com/chaoss/wg-evolution/.gitignore .gitignore 3 3 0 0 0 Value Worker 0.0.1 scc 2019-11-14 11:01:06 From 5e56a85e536c4cd69a840f8133baa017ac1cdec1 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Mon, 18 Nov 2019 10:41:30 -0600 Subject: [PATCH 063/250] adjusted the housekeeper query for issue and pr models to detect repos that don't have any entries in the db --- augur/housekeeper/housekeeper.py | 60 ++++++++++++++++++++++++++------ 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/augur/housekeeper/housekeeper.py b/augur/housekeeper/housekeeper.py index 32f5563069..116b64ac22 100644 --- a/augur/housekeeper/housekeeper.py +++ b/augur/housekeeper/housekeeper.py @@ -188,9 +188,27 @@ def prep_jobs(self, jobs): a.repo_id = d.repo_id AND b.repo_id = d.repo_id AND b.data_collection_date = e.last_collected - {} + {0} GROUP BY a.repo_id, d.repo_id, b.pull_request_count - ORDER BY ratio_abs; + UNION + SELECT repo_id,repo_git, 0 AS pull_request_count, repo_id AS pr_repo_id, 0 AS pr_collected_count, + 0 AS prs_missing, + 0 AS ratio_abs, + 0 AS ratio_prs + FROM repo + WHERE repo_id NOT IN ( + SELECT a.repo_id FROM repo a, pull_requests d, repo_info b, ( + SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info + GROUP BY repo_id + ORDER BY repo_id) e + WHERE a.repo_id = b.repo_id AND + a.repo_id = d.repo_id AND + b.repo_id = d.repo_id AND + b.data_collection_date = e.last_collected + {0} + GROUP BY a.repo_id, d.repo_id, b.pull_request_count + ) + ORDER BY ratio_abs """.format(where_condition)) if job['model'] == 'pull_requests' else s.sql.text(""" SELECT a.repo_id, a.repo_git, b.issues_count, d.repo_id AS pr_repo_id, count(*) AS issues_collected_count, (b.issues_count-count(*)) AS issues_missing, @@ -198,17 +216,37 @@ def prep_jobs(self, jobs): (cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.issues_count AS DOUBLE PRECISION), 0)) AS ratio_issues FROM repo a, issues d, repo_info b, ( - SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info + SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info GROUP BY repo_id ORDER BY repo_id) e - WHERE a.repo_id = b.repo_id AND - a.repo_id = d.repo_id AND - b.repo_id = d.repo_id AND - b.data_collection_date = e.last_collected - AND d.pull_request_id IS NULL - {} - GROUP BY a.repo_id, d.repo_id, b.issues_count - ORDER BY ratio_abs; + WHERE a.repo_id = b.repo_id AND + a.repo_id = d.repo_id AND + b.repo_id = d.repo_id AND + b.data_collection_date = e.last_collected + AND d.pull_request_id IS NULL + {0} + GROUP BY a.repo_id, d.repo_id, b.issues_count + UNION + SELECT repo_id,repo_git, 0 AS issues_count, repo_id AS pr_repo_id, 0 AS issues_collected_count, + 0 AS issues_missing, + 0 AS ratio_abs, + 0 AS ratio_issues + FROM repo + WHERE repo_id NOT IN ( + SELECT a.repo_id FROM repo a, issues d, repo_info b, + ( + SELECT repo_id, max(data_collection_date) AS last_collected FROM repo_info + GROUP BY repo_id + ORDER BY repo_id) e + WHERE a.repo_id = b.repo_id AND + a.repo_id = d.repo_id AND + b.repo_id = d.repo_id AND + b.data_collection_date = e.last_collected + AND d.pull_request_id IS NULL + {0} + GROUP BY a.repo_id, d.repo_id, b.issues_count + ) + ORDER BY ratio_abs """.format(where_condition)) if job['model'] == 'issues' else s.sql.text(""" SELECT repo_git, repo_id FROM repo {} ORDER BY repo_id ASC """.format(where_condition)) From ffcf7f2c0393013243499e1b58022cb343d3a472 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 11:29:16 -0600 Subject: [PATCH 064/250] repo-reset command in `augur util repo-reset` --- augur/cli/util.py | 10 +++++++++- persistence_schema/repo-reset.sql | 1 + util/scripts/control/repo-reset.sh | 6 ++++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 persistence_schema/repo-reset.sql create mode 100644 util/scripts/control/repo-reset.sh diff --git a/augur/cli/util.py b/augur/cli/util.py index 853605d6b4..b18edc00ae 100644 --- a/augur/cli/util.py +++ b/augur/cli/util.py @@ -74,4 +74,12 @@ def kill(app): """ kill running augur processes """ - subprocess.call('util/scripts/control/augurkill.sh') \ No newline at end of file + subprocess.call('util/scripts/control/augurkill.sh') + +@cli.command('repo-reset', short_help='Reset Repo Collection') +@pass_application +def kill(app): + """ + kill running augur processes + """ + subprocess.call('util/scripts/control/repo-reset.sh') diff --git a/persistence_schema/repo-reset.sql b/persistence_schema/repo-reset.sql new file mode 100644 index 0000000000..eabdb16206 --- /dev/null +++ b/persistence_schema/repo-reset.sql @@ -0,0 +1 @@ +update augur_data.repo set repo_path = NULL, repo_name = NULL, repo_status = 'New'; \ No newline at end of file diff --git a/util/scripts/control/repo-reset.sh b/util/scripts/control/repo-reset.sh new file mode 100644 index 0000000000..fc456b0a80 --- /dev/null +++ b/util/scripts/control/repo-reset.sh @@ -0,0 +1,6 @@ +#!/bin/bash +export AUGUR_SCHEMA_HOME=$AUGUR_HOME/augur/persistence_schema +cd AUGUR_SCHEMA_HOME +psql -h localhost -d redhat -U augur -p 5433 -a -w -f $AUGUR_HOME/augur/persistence_schema/repo-reset.sql + + From b25bab923ca0c5c75f6153faef0904e7032e2847 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 11:42:01 -0600 Subject: [PATCH 065/250] Facade timezone fix. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index ebef55696d..616c5cabae 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -161,7 +161,7 @@ def discover_null_affiliations(attribution,email): "SET cmt_%s_affiliation = %%s " "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " - "AND cmt_%s_date >= TO_TIMESTAMP(%%s, 'YYYY-MM-DD HH:MM:SS')" % + "AND cmt_%s_date >= timestamptz %s" % (attribution, attribution, attribution, attribution)) cfg.cursor.execute(update, (match[0], email, match[1])) From ff9e8293c38f8003e7defadc1f35db15e8f58c6f Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 11:44:04 -0600 Subject: [PATCH 066/250] updated reset logic --- persistence_schema/repo-reset.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/persistence_schema/repo-reset.sql b/persistence_schema/repo-reset.sql index eabdb16206..c9fe6ec968 100644 --- a/persistence_schema/repo-reset.sql +++ b/persistence_schema/repo-reset.sql @@ -1 +1,2 @@ -update augur_data.repo set repo_path = NULL, repo_name = NULL, repo_status = 'New'; \ No newline at end of file +update augur_data.repo set repo_path = NULL, repo_name = NULL, repo_status = 'New'; +truncate commits cascade; \ No newline at end of file From 82852df95465a15a8d60a30feeda49d2c5d467f1 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 11:59:21 -0600 Subject: [PATCH 067/250] Update to the seed data related to time zones. --- persistence_schema/5-seed-data.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/persistence_schema/5-seed-data.sql b/persistence_schema/5-seed-data.sql index 3c1b01d86f..87d6b79e11 100644 --- a/persistence_schema/5-seed-data.sql +++ b/persistence_schema/5-seed-data.sql @@ -21,11 +21,11 @@ INSERT INTO "augur_data"."settings" VALUES (12, 'database_version', '7', '2019-0 INSERT INTO "augur_data"."settings" VALUES (13, 'results_visibility', 'show', '2019-05-07 12:47:26'); INSERT INTO "augur_data"."settings" VALUES (1, 'start_date', '2001-01-01', '1900-01-22 20:34:51'); INSERT INTO "augur_data"."settings" VALUES (4, 'log_level', 'Debug', '2019-05-07 12:47:26'); -INSERT INTO "augur_data"."settings" VALUES (2, 'repo_directory', '$HOME/augur_repos/', '2019-05-07 12:47:26'); +INSERT INTO "augur_data"."settings" VALUES (2, 'repo_directory', '/home/sean/github/augur-worker-test/repos', '2019-05-07 12:47:26'); +INSERT INTO "augur_data"."settings" VALUES (8, 'affiliations_processed', '2001-08-26 10:03:29.815013+00', '1900-01-22 20:36:27'); +INSERT INTO "augur_data"."settings" VALUES (9, 'aliases_processed', '2001-08-26 10:03:29.815013+00', '1900-01-22 20:36:27'); INSERT INTO "augur_data"."settings" VALUES (7, 'working_author', 'done', '1900-01-22 20:23:43'); INSERT INTO "augur_data"."settings" VALUES (3, 'utility_status', 'Idle', '1900-01-22 20:38:07'); -INSERT INTO "augur_data"."settings"("id", "setting", "value", "last_modified") VALUES (8, 'affiliations_processed', '2001-10-29 12:22:25', '1900-01-22 20:36:27'); -INSERT INTO "augur_data"."settings"("id", "setting", "value", "last_modified") VALUES (9, 'aliases_processed', '2001-10-29 12:22:25', '1900-01-22 20:36:27'); COMMIT; From 20e5f2e81de40fae381a7c448cc5afa5fd7a827e Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 12:16:40 -0600 Subject: [PATCH 068/250] SMall python error fixed. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 616c5cabae..73574eff80 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -161,7 +161,7 @@ def discover_null_affiliations(attribution,email): "SET cmt_%s_affiliation = %%s " "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " - "AND cmt_%s_date >= timestamptz %s" % + "AND cmt_%s_date >= timestamptz %%s" % (attribution, attribution, attribution, attribution)) cfg.cursor.execute(update, (match[0], email, match[1])) From 408bc8033b863d353643f3314059b82c94fecf25 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 12:42:30 -0600 Subject: [PATCH 069/250] Time and Date. Yum. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 73574eff80..4cb24a155c 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -161,7 +161,7 @@ def discover_null_affiliations(attribution,email): "SET cmt_%s_affiliation = %%s " "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " - "AND cmt_%s_date >= timestamptz %%s" % + "AND cmt_%s_date >= TO_DATE(%%s, 'YYYY-MM-DD')" % (attribution, attribution, attribution, attribution)) cfg.cursor.execute(update, (match[0], email, match[1])) From 7282f1c5d8723e49ea36ae231d69322579a46fd5 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 12:45:47 -0600 Subject: [PATCH 070/250] Trying to log timezone errors. --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index b57d16173b..405be907a1 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -175,7 +175,7 @@ def store_commit(repos_id,commit,filename, committer_name,committer_email,discover_alias(committer_email),committer_date,committer_timestamp, added,removed,whitespace,committer_date,cfg.tool_source,cfg.tool_version,cfg.data_source)) except: - cfg.log_activity('Info', 'Something wrong in error log for timezone error') + cfg.log_activity('Info', 'Something wrong in error log for timezone error %s %s' % committer_timestamp,author_timestamp ) cfg.log_activity('Debug','Stored commit: %s' % commit) From 7b06dff049e199d2a0c7f272c701130054a57bd5 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 12:56:50 -0600 Subject: [PATCH 071/250] The joys of debugging timestamps and dates! --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 4cb24a155c..f90e50c2da 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -162,7 +162,7 @@ def discover_null_affiliations(attribution,email): "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " "AND cmt_%s_date >= TO_DATE(%%s, 'YYYY-MM-DD')" % - (attribution, attribution, attribution, attribution)) + (attribution, attribution, attribution, ca_start_date)) cfg.cursor.execute(update, (match[0], email, match[1])) cfg.db.commit() From 83c36ad911367636efed719d9327c18b2154005f Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 13:19:40 -0600 Subject: [PATCH 072/250] test case. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index f90e50c2da..4cb24a155c 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -162,7 +162,7 @@ def discover_null_affiliations(attribution,email): "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " "AND cmt_%s_date >= TO_DATE(%%s, 'YYYY-MM-DD')" % - (attribution, attribution, attribution, ca_start_date)) + (attribution, attribution, attribution, attribution)) cfg.cursor.execute(update, (match[0], email, match[1])) cfg.db.commit() From c46849549b7b015391f5e2ec9504ff93825df169 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 13:33:29 -0600 Subject: [PATCH 073/250] Improving date localization features. --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 405be907a1..4a9f8d1abd 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -241,7 +241,7 @@ def store_commit(repos_id,commit,filename, # Read the git log - git_log = subprocess.Popen(["git --git-dir %s log -p -M %s -n1 " + git_log = subprocess.Popen(["git --git-dir %s log --date = local -p -M %s -n1 " "--pretty=format:'" "author_name: %%an%%nauthor_email: %%ae%%nauthor_date:%%ai%%n" "committer_name: %%cn%%ncommitter_email: %%ce%%ncommitter_date: %%ci%%n" From 605ea2e4c24e451026ead5962c5b156defeeb866 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 13:38:12 -0600 Subject: [PATCH 074/250] syntax issue. --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 4a9f8d1abd..e11eb2c6d1 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -241,7 +241,7 @@ def store_commit(repos_id,commit,filename, # Read the git log - git_log = subprocess.Popen(["git --git-dir %s log --date = local -p -M %s -n1 " + git_log = subprocess.Popen(["git --git-dir %s log --date=local -p -M %s -n1 " "--pretty=format:'" "author_name: %%an%%nauthor_email: %%ae%%nauthor_date:%%ai%%n" "committer_name: %%cn%%ncommitter_email: %%ce%%ncommitter_date: %%ci%%n" From 6e1970730ede8a01f7aa3727e6c6e33d9e9c9805 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 13:58:48 -0600 Subject: [PATCH 075/250] Try this again. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 4cb24a155c..3bb6887020 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -161,7 +161,7 @@ def discover_null_affiliations(attribution,email): "SET cmt_%s_affiliation = %%s " "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " - "AND cmt_%s_date >= TO_DATE(%%s, 'YYYY-MM-DD')" % + "AND cmt_%s_date >= TO_TIMESTAMP(%%s, 'YYYY-MM-DD')" % (attribution, attribution, attribution, attribution)) cfg.cursor.execute(update, (match[0], email, match[1])) From 1bdbe17dc1de3b539b17e5256c92c96ae86002db Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 18 Nov 2019 14:10:26 -0600 Subject: [PATCH 076/250] Small updates (not fixed yet) Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 2 +- frontend/src/components/charts/LicenseTable.vue | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 4c09fd2ad5..d7ceb46762 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -393,7 +393,7 @@ def license_declared(self, repo_group_id, repo_id=None): UNION SELECT 500 as the_license_id, - 'No Warranty' as short_name, + 'No Assertion' as short_name, COUNT ( * ) FROM files_licenses A, diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 174d7ac7eb..461801b3ac 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -14,7 +14,7 @@ @@ -63,6 +63,18 @@ 'endpoint', // map `this.endpoint({...})` to `this.$store.dispatch('endpoint', {...})` // uses: this.endpoint({endpoints: [], repos (optional): [], repoGroups (optional): []}) ]), + linfo: function (e) { + console.log("**********************") + console.log(this.$store.state.common.apiRepos) + let repoID = this.$store.state.common.apiRepos[0].repo_id; + let groupID = this.$store.state.common.apiRepose[0].repo_group_id; + fetch(`http://localhost:5000/api/unstable/" + e + "/True/${groupID}/${repoID}/license-files`) + .then(res => res.json()) + .then(res => { + console.log('LICENSE FILES'); + console.log(res); + }); + } } }) export default class CountBlock extends AppProps{ From d9273b717193549580362253dcc7d8e39bc83f77 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 18 Nov 2019 14:17:09 -0600 Subject: [PATCH 077/250] Update Fields in SPDX Director Signed-off-by: Matt Snell --- spdx-scanner/augur_sbom_config.json | 9 --------- spdx-scanner/director.py | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 19 deletions(-) delete mode 100644 spdx-scanner/augur_sbom_config.json diff --git a/spdx-scanner/augur_sbom_config.json b/spdx-scanner/augur_sbom_config.json deleted file mode 100644 index 38adac12a7..0000000000 --- a/spdx-scanner/augur_sbom_config.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "dbname": "****", - "user": "****", - "password": "****", - "host": "localhost", - "port": 5433, - "dsfile": "3.0.tag", - "repos_path": "~/" -} diff --git a/spdx-scanner/director.py b/spdx-scanner/director.py index 40a1bc3c5b..f8af515401 100644 --- a/spdx-scanner/director.py +++ b/spdx-scanner/director.py @@ -10,20 +10,20 @@ import initial_scans as s if __name__ == "__main__": - with open("augur_sbom_config.json") as json_file: + with open("../augur.config.json") as json_file: config = json.load(json_file) - dbname = config["dbname"] - user = config["user"] - password = config["password"] - host = config["host"] - port = config["port"] - dsfile = config["dsfile"] - ipath = config["repos_path"] + dbname = config["Database"]["database"] + user = config["Database"]["name"] + password = config["Database"]["password"] + host = config["Database"]["host"] + port = config["Database"]["port"] + dsfile = config["Workers"]["license_worker"]["tagfile"] + ipath = config["Workers"]["license_worker"]["repos_directory"] print("---------------------") print("INITIAL SCANS RUNNING") print("---------------------") - s.scan(dbname, user, password, host, port, dsfile, ipath) + #s.scan(dbname, user, password, host, port, dsfile, ipath) print("------------------") print("SBOM SCANS RUNNING") print("------------------") - p.scan(dbname, user, password, host, port, dsfile, ipath) + #p.scan(dbname, user, password, host, port, dsfile, ipath) From 7253d5bba153a4feea98336b39cfc06556278173 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 15:14:16 -0600 Subject: [PATCH 078/250] Its a date already. --- workers/facade_worker/facade_worker/facade07rebuildcache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 3bb6887020..1aaaa7ae26 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -161,9 +161,9 @@ def discover_null_affiliations(attribution,email): "SET cmt_%s_affiliation = %%s " "WHERE cmt_%s_email = %%s " "AND cmt_%s_affiliation IS NULL " - "AND cmt_%s_date >= TO_TIMESTAMP(%%s, 'YYYY-MM-DD')" % + "AND cmt_%s_date >= %%s" % (attribution, attribution, attribution, attribution)) - + #"AND cmt_%s_date >= TO_TIMESTAMP(%%s, 'YYYY-MM-DD')" % cfg.cursor.execute(update, (match[0], email, match[1])) cfg.db.commit() From c73dbd6ceb9a51dbba42fc0c3aabe55ab55f2107 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 15:37:47 -0600 Subject: [PATCH 079/250] debuggery. --- .../facade_worker/facade_worker/facade03analyzecommit.py | 6 +++++- workers/facade_worker/facade_worker/facade07rebuildcache.py | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index e11eb2c6d1..06318e235d 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -241,13 +241,17 @@ def store_commit(repos_id,commit,filename, # Read the git log - git_log = subprocess.Popen(["git --git-dir %s log --date=local -p -M %s -n1 " + git_log = subprocess.Popen(["git --git-dir %s log -p -M %s -n1 " "--pretty=format:'" "author_name: %%an%%nauthor_email: %%ae%%nauthor_date:%%ai%%n" "committer_name: %%cn%%ncommitter_email: %%ce%%ncommitter_date: %%ci%%n" "parents: %%p%%nEndPatch' " % (repo_loc,commit)], stdout=subprocess.PIPE, shell=True) + ## Extra logging by Sean + cfg.log_activity('Debug','Git Log : %s' % git_log) + ## + # Stash the commit we're going to analyze so we can back it out if something # goes wrong later. store_working_commit = ("INSERT INTO working_commits " diff --git a/workers/facade_worker/facade_worker/facade07rebuildcache.py b/workers/facade_worker/facade_worker/facade07rebuildcache.py index 1aaaa7ae26..fa045555ba 100644 --- a/workers/facade_worker/facade_worker/facade07rebuildcache.py +++ b/workers/facade_worker/facade_worker/facade07rebuildcache.py @@ -164,6 +164,9 @@ def discover_null_affiliations(attribution,email): "AND cmt_%s_date >= %%s" % (attribution, attribution, attribution, attribution)) #"AND cmt_%s_date >= TO_TIMESTAMP(%%s, 'YYYY-MM-DD')" % + ## Extra logging by Sean + cfg.log_activity('Debug', update) + ## cfg.cursor.execute(update, (match[0], email, match[1])) cfg.db.commit() From f1879455775e93648add126906251358dfeee9d4 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 15:52:32 -0600 Subject: [PATCH 080/250] Improved logging --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 06318e235d..f01935779d 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -249,7 +249,7 @@ def store_commit(repos_id,commit,filename, % (repo_loc,commit)], stdout=subprocess.PIPE, shell=True) ## Extra logging by Sean - cfg.log_activity('Debug','Git Log : %s' % git_log) + cfg.log_activity('Debug','Git Log : %s' % git_log.communicate()) ## # Stash the commit we're going to analyze so we can back it out if something From b422a8fca58141af339adb9d4ed691405e4a75eb Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 15:58:42 -0600 Subject: [PATCH 081/250] Its so beautiful. I think I'll stay. --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index f01935779d..2156618542 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -249,7 +249,8 @@ def store_commit(repos_id,commit,filename, % (repo_loc,commit)], stdout=subprocess.PIPE, shell=True) ## Extra logging by Sean - cfg.log_activity('Debug','Git Log : %s' % git_log.communicate()) + fred = git_log.communicate() + cfg.log_activity('Debug','Git Log : %s' % fred) ## # Stash the commit we're going to analyze so we can back it out if something From 5a4bc41e88561d37a7ae90a9a974049b52bcf4f0 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 16:02:02 -0600 Subject: [PATCH 082/250] logged --- .../facade_worker/facade_worker/facade03analyzecommit.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 2156618542..0d43e16237 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -249,8 +249,10 @@ def store_commit(repos_id,commit,filename, % (repo_loc,commit)], stdout=subprocess.PIPE, shell=True) ## Extra logging by Sean - fred = git_log.communicate() - cfg.log_activity('Debug','Git Log : %s' % fred) + barack, don = git_log.communicate() + cfg.log_activity('Debug','Git Log : %s' % barack) + cfg.log_activity('Debug','Git Log : %s' % don) + ## # Stash the commit we're going to analyze so we can back it out if something From 2e4bf0e4f4dca793c6a6198f9ff5f6962bfcebde Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 18 Nov 2019 16:06:12 -0600 Subject: [PATCH 083/250] hmm --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index 0d43e16237..a1ea443909 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -248,11 +248,6 @@ def store_commit(repos_id,commit,filename, "parents: %%p%%nEndPatch' " % (repo_loc,commit)], stdout=subprocess.PIPE, shell=True) - ## Extra logging by Sean - barack, don = git_log.communicate() - cfg.log_activity('Debug','Git Log : %s' % barack) - cfg.log_activity('Debug','Git Log : %s' % don) - ## # Stash the commit we're going to analyze so we can back it out if something From 5d7789de12a23eac7caa720a763b6c4095040e45 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Tue, 19 Nov 2019 09:12:06 -0600 Subject: [PATCH 084/250] configurable frontend server options --- frontend/src/router.ts | 5 +++-- frontend/src/store/modules/common/index.ts | 5 +++-- frontend/src/store/modules/compare/index.ts | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/frontend/src/router.ts b/frontend/src/router.ts index 2d1fca280d..e2d7d58a27 100755 --- a/frontend/src/router.ts +++ b/frontend/src/router.ts @@ -9,8 +9,9 @@ import _ from 'lodash'; var config = require('../../augur.config.json') const AugurAPIModule = require('@/AugurAPI').default; -var port = config['Server']['port'] ? ':' + config['Server']['port'] : '' -const AugurAPI = new AugurAPIModule('http://' + config['Server']['host'] + port); +var port = config['Frontend'] ? (config['Frontend']['port'] ? ':' + config['Frontend']['port'] : '') : (config['Server']['port'] ? ':' + config['Server']['port'] : '') +var host = config['Frontend'] ? (config['Frontend']['host']) : (config['Server']['host']) +const AugurAPI = new AugurAPIModule('http://' + host + port); import Errors from './views/Errors.vue'; import Tables from './views/Tables.vue'; diff --git a/frontend/src/store/modules/common/index.ts b/frontend/src/store/modules/common/index.ts index 3f38d41fe3..5719cdfc7d 100644 --- a/frontend/src/store/modules/common/index.ts +++ b/frontend/src/store/modules/common/index.ts @@ -5,8 +5,9 @@ import getters from './getters'; var config = require('../../../../../augur.config.json') const AugurAPIModule = require('@/AugurAPI').default; -var port = config['Server']['port'] ? ':' + config['Server']['port'] : '' -const AugurAPI = new AugurAPIModule('http://' + config['Server']['host'] + port); +var port = config['Frontend'] ? (config['Frontend']['port'] ? ':' + config['Frontend']['port'] : '') : (config['Server']['port'] ? ':' + config['Server']['port'] : '') +var host = config['Frontend'] ? (config['Frontend']['host']) : (config['Server']['host']) +const AugurAPI = new AugurAPIModule('http://' + host + port); const state = { // hasState: false, diff --git a/frontend/src/store/modules/compare/index.ts b/frontend/src/store/modules/compare/index.ts index 146cf203ab..778005fd44 100644 --- a/frontend/src/store/modules/compare/index.ts +++ b/frontend/src/store/modules/compare/index.ts @@ -4,8 +4,9 @@ import mutations from './mutations'; import getters from './getters'; var config = require('../../../../../augur.config.json') const AugurAPIModule = require('@/AugurAPI').default; -var port = config.Server.port ? ':' + config.Server.port : '' -const AugurAPI = new AugurAPIModule('http://' + config.Server.host + port); +var port = config['Frontend'] ? (config['Frontend']['port'] ? ':' + config['Frontend']['port'] : '') : (config['Server']['port'] ? ':' + config['Server']['port'] : '') +var host = config['Frontend'] ? (config['Frontend']['host']) : (config['Server']['host']) +const AugurAPI = new AugurAPIModule('http://' + host + port); const state = { baseRepo: '', From efeac29bbd9a2bd457ef8c1ec2793ff4731674eb Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 19 Nov 2019 11:31:37 -0600 Subject: [PATCH 085/250] License File Lists Signed-off-by: Matt Snell --- .../src/components/charts/LicenseTable.vue | 52 ++++++++++++++----- 1 file changed, 39 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 461801b3ac..68099035f9 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -14,14 +14,14 @@ @@ -63,16 +63,42 @@ 'endpoint', // map `this.endpoint({...})` to `this.$store.dispatch('endpoint', {...})` // uses: this.endpoint({endpoints: [], repos (optional): [], repoGroups (optional): []}) ]), - linfo: function (e) { - console.log("**********************") - console.log(this.$store.state.common.apiRepos) - let repoID = this.$store.state.common.apiRepos[0].repo_id; - let groupID = this.$store.state.common.apiRepose[0].repo_group_id; - fetch(`http://localhost:5000/api/unstable/" + e + "/True/${groupID}/${repoID}/license-files`) - .then(res => res.json()) - .then(res => { + linfoF: function () { + let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)) + let repoID = apiData[Object.keys(apiData)[0]].repo_id; + let groupID = apiData[Object.keys(apiData)[0]].repo_group_id; + fetch(`http://localhost:5000/api/unstable/500/False/${groupID}/${repoID}/license-files`) + .then(res => res.json()) + .then(res => { + console.log('LICENSE FILES'); + let res_refined:{ [index:string] : number } = {}; + for(let i in res) + res_refined[Number(i)] = res[i].file_name + let uriContent = URL.createObjectURL(new Blob([JSON.stringify(res_refined, null, 2)], {type : 'text/json;charset=utf-8'})); + let link = document.createElement('a'); + link.setAttribute('href', uriContent); + link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + let event = new MouseEvent('click'); + link.dispatchEvent(event); + }); + }, + linfo: function (license_id) { + let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)) + let repoID = apiData[Object.keys(apiData)[0]].repo_id; + let groupID = apiData[Object.keys(apiData)[0]].repo_group_id; + fetch(`http://localhost:5000/api/unstable/${license_id}/True/${groupID}/${repoID}/license-files`) + .then(res => res.json()) + .then(res => { console.log('LICENSE FILES'); - console.log(res); + let res_refined:{ [index:string] : number } = {}; + for(let i in res) + res_refined[Number(i)] = res[i].file_name + let uriContent = URL.createObjectURL(new Blob([JSON.stringify(res_refined, null, 2)], {type : 'text/json;charset=utf-8'})); + let link = document.createElement('a'); + link.setAttribute('href', uriContent); + link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + let event = new MouseEvent('click'); + link.dispatchEvent(event); }); } } From 7717a4e665c82a9a299154ad0e7519c3541d6503 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 19 Nov 2019 11:35:39 -0600 Subject: [PATCH 086/250] Add Context to License Data Signed-off-by: Matt Snell --- frontend/src/components/charts/LicenseTable.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 68099035f9..b9aa70cb76 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -3,6 +3,11 @@
+ + Click on a license for a description of the license
+ Click on a license count for a list of associated files
+
+
From 9b3d8b888bc19cdfa1444a2f01e3395bea2c95fa Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Tue, 19 Nov 2019 11:41:58 -0600 Subject: [PATCH 087/250] print statement for debugging rate limit switch --- workers/standard_methods.py | 1 + 1 file changed, 1 insertion(+) diff --git a/workers/standard_methods.py b/workers/standard_methods.py index b81e25de72..772dff6d64 100644 --- a/workers/standard_methods.py +++ b/workers/standard_methods.py @@ -157,6 +157,7 @@ def update_gh_rate_limit(self, logging, response): url = "https://api.github.com/users/gabe-heim" for oauth in self.oauths: + logging.info("Inspecting rate limit info for oauth: {}\n".format(oauth)) self.headers = {'Authorization': 'token %s' % oauth['access_token']} response = requests.get(url=url, headers=self.headers) oauth['rate_limit'] = int(response.headers['X-RateLimit-Remaining']) From 01762c51551a3e92b9cecbfea7ef408489ffe670 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Tue, 19 Nov 2019 14:21:51 -0600 Subject: [PATCH 088/250] api key switching fixed --- workers/github_worker/github_worker/worker.py | 4 ++-- workers/pull_request_worker/pull_request_worker/worker.py | 4 ++-- workers/repo_info_worker/repo_info_worker/worker.py | 4 ++-- workers/standard_methods.py | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 6df39ba5cb..4f2f35f299 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -128,7 +128,7 @@ def __init__(self, config, task=None): response = requests.get(url=url, headers=self.headers) self.oauths.append({ 'oauth_id': oauth['oauth_id'], - 'key': oauth['access_token'], + 'access_token': oauth['access_token'], 'rate_limit': int(response.headers['X-RateLimit-Remaining']), 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() }) @@ -139,7 +139,7 @@ def __init__(self, config, task=None): # First key to be used will be the one specified in the config (first element in # self.oauths array will always be the key in use) - self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + self.headers = {'Authorization': 'token %s' % self.oauths[0]['access_token']} # Send broker hello message connect_to_broker(self, logging.getLogger()) diff --git a/workers/pull_request_worker/pull_request_worker/worker.py b/workers/pull_request_worker/pull_request_worker/worker.py index 38474c64ad..c24d80432b 100644 --- a/workers/pull_request_worker/pull_request_worker/worker.py +++ b/workers/pull_request_worker/pull_request_worker/worker.py @@ -180,7 +180,7 @@ def __init__(self, config, task=None): response = requests.get(url=url, headers=self.headers) self.oauths.append({ 'oauth_id': oauth['oauth_id'], - 'key': oauth['access_token'], + 'access_token': oauth['access_token'], 'rate_limit': int(response.headers['X-RateLimit-Remaining']), 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() }) @@ -191,7 +191,7 @@ def __init__(self, config, task=None): # First key to be used will be the one specified in the config (first element in # self.oauths array will always be the key in use) - self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + self.headers = {'Authorization': 'token %s' % self.oauths[0]['access_token']} # Send broker hello message connect_to_broker(self, logging.getLogger()) diff --git a/workers/repo_info_worker/repo_info_worker/worker.py b/workers/repo_info_worker/repo_info_worker/worker.py index 6422c4c2b1..076c18d398 100644 --- a/workers/repo_info_worker/repo_info_worker/worker.py +++ b/workers/repo_info_worker/repo_info_worker/worker.py @@ -90,7 +90,7 @@ def __init__(self, config, task=None): response = requests.get(url=url, headers=self.headers) self.oauths.append({ 'oauth_id': oauth['oauth_id'], - 'key': oauth['access_token'], + 'access_token': oauth['access_token'], 'rate_limit': int(response.headers['X-RateLimit-Remaining']), 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) - datetime.now()).total_seconds() }) @@ -101,7 +101,7 @@ def __init__(self, config, task=None): # First key to be used will be the one specified in the config (first element in # self.oauths array will always be the key in use) - self.headers = {'Authorization': 'token %s' % self.oauths[0]['key']} + self.headers = {'Authorization': 'token %s' % self.oauths[0]['access_token']} # Send broker hello message connect_to_broker(self, logging.getLogger()) diff --git a/workers/standard_methods.py b/workers/standard_methods.py index 772dff6d64..69bf0e6bb6 100644 --- a/workers/standard_methods.py +++ b/workers/standard_methods.py @@ -176,9 +176,9 @@ def update_gh_rate_limit(self, logging, response): time.sleep(new_oauth['seconds_to_reset']) # Change headers to be using the new oauth's key - self.headers = {'Authorization': 'token %s' % new_oauth['key']} + self.headers = {'Authorization': 'token %s' % new_oauth['access_token']} # Make new oauth the 0th element in self.oauths so we know which one is in use - index = self.oauths.index('password2') + index = self.oauths.index(new_oauth) self.oauths[0], self.oauths[index] = self.oauths[index], self.oauths[0] logging.info("Using oauth: {}".format(self.oauths[0])) From 045f217d955e9d01b328c14ad46c1b079fd11db3 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Wed, 20 Nov 2019 07:19:12 -0600 Subject: [PATCH 089/250] added extra break condition for empty issue request --- workers/github_worker/github_worker/worker.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 4f2f35f299..0046c31621 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -748,6 +748,9 @@ def issues_model(self, entry_info, repo_id): j = r.json() + if len(j) == 0: + break + # Checking contents of requests with what we already have in the db j = self.assign_tuple_action(j, issue_table_values, {'comment_count': 'comments','issue_state': 'state'}, @@ -993,7 +996,7 @@ def issues_model(self, entry_info, repo_id): j = r.json() # Checking contents of requests with what we already have in the db - new_comments = self.check_duplicates(j, event_table_values, pseudo_key_gh) + new_comments = self.check_duplicates(j, issue_comments_table_values, pseudo_key_gh) if len(new_comments) == 0 and multiple_pages and 'last' in r.links: if i - 1 != int(r.links['last']['url'][-6:].split('=')[1]): logging.info("No more pages with unknown comments, breaking from pagination.\n") From d3255f356d0f6c876ce8f76b6e471047aed7f072 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Wed, 20 Nov 2019 07:43:58 -0600 Subject: [PATCH 090/250] update to schema update --- util/scripts/install/schema_update.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql index 4685eacb17..30706665a5 100644 --- a/util/scripts/install/schema_update.sql +++ b/util/scripts/install/schema_update.sql @@ -27,6 +27,11 @@ INSERT INTO "augur_operations"."augur_settings"("id", "setting", "value", "last_ ------------------------------------------------- +-- Updates to commit timestamps +ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_author_timestamp" TYPE timestamptz(0) USING "cmt_author_timestamp"::timestamptz(0); + +ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_committer_timestamp" TYPE timestamptz(0) USING "cmt_committer_timestamp"::timestamptz(0); + -- New operations tables From 6dbbf4c0e384b9bd536ad1215854306940b9dda4 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Wed, 20 Nov 2019 07:56:24 -0600 Subject: [PATCH 091/250] Updated seed data and worker test data for revisions to worker logic. --- persistence_schema/5-seed-data.sql | 8 -------- workers/worker_test_repos.md | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 8 deletions(-) create mode 100644 workers/worker_test_repos.md diff --git a/persistence_schema/5-seed-data.sql b/persistence_schema/5-seed-data.sql index 87d6b79e11..d4f6c61016 100644 --- a/persistence_schema/5-seed-data.sql +++ b/persistence_schema/5-seed-data.sql @@ -31,14 +31,6 @@ COMMIT; --- Job for GitHub Worker and Pull Request Worker -BEGIN; -INSERT INTO "augur_operations"."worker_job" VALUES ('issues', 5, 0, '203', 'The issues model consists of contributors, issues, issue events, issue labels, and issue comments.', 1997, '2019-10-19 14:17:40', 0, 22); -INSERT INTO "augur_operations"."worker_job"("job_model", "state", "zombie_head", "since_id_str", "description", "last_count", "last_run", "analysis_state", "oauth_id") VALUES ('pull_requests', 5, 0, '0', 'The pull request model', 0, '2018-08-09 13:39:20', 0, 22); -COMMIT; - - - -- ---------------------------- -- Records of chaoss_metric_status -- ---------------------------- diff --git a/workers/worker_test_repos.md b/workers/worker_test_repos.md new file mode 100644 index 0000000000..6921293949 --- /dev/null +++ b/workers/worker_test_repos.md @@ -0,0 +1,24 @@ +# Data to test worker collection + +```sql +-- ---------------------------- +-- Records of repo_groups +-- ---------------------------- +BEGIN; +INSERT INTO "augur_data"."repo_groups" VALUES (20, ' "Sample Database Repo Group Two"', '', '', 0, '2019-10-19 16:02:23', 'Unknown', 'Loaded by user', '1.0', 'Git', '2019-10-19 16:02:23'); +INSERT INTO "augur_data"."repo_groups" VALUES (10, ' "Sample Database Repo Group One"', '', '', 0, '2019-10-19 16:02:23', 'Unknown', 'Loaded by user', '1.0', 'Git', '2019-10-19 16:02:23'); +COMMIT; + + +-- ---------------------------- +-- Records of repo +-- ---------------------------- +BEGIN; +INSERT INTO "augur_data"."repo" VALUES (25433, 20, 'https://github.com/chaoss/wg-risk.git', 'github.com/chaoss/', 'wg-risk', '2019-10-19 16:03:01', 'Complete', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLI', '1.0', 'Git', '2019-10-19 16:03:01'); +INSERT INTO "augur_data"."repo" VALUES (25434, 20, 'https://github.com/chaoss/wg-common.git', 'github.com/chaoss/', 'wg-common', '2019-10-19 16:03:01', 'Complete', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLI', '1.0', 'Git', '2019-10-19 16:03:01'); +INSERT INTO "augur_data"."repo" VALUES (25430, 10, 'https://github.com/chaoss/augur.git', 'github.com/chaoss/', 'augur', '2019-10-19 16:03:01', 'Complete', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLI', '1.0', 'Git', '2019-10-19 16:03:01'); +INSERT INTO "augur_data"."repo" VALUES (25431, 20, 'https://github.com/chaoss/grimoirelab.git', 'github.com/chaoss/', 'grimoirelab', '2019-10-19 16:03:01', 'Complete', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLI', '1.0', 'Git', '2019-10-19 16:03:01'); +INSERT INTO "augur_data"."repo" VALUES (25432, 20, 'https://github.com/chaoss/wg-evolution.git', 'github.com/chaoss/', 'wg-evolution', '2019-10-19 16:03:01', 'Complete', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLI', '1.0', 'Git', '2019-10-19 16:03:01'); +COMMIT; + +``` \ No newline at end of file From c51ec377a104a7bb869a6b592b9300351e79f187 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Wed, 20 Nov 2019 10:45:37 -0600 Subject: [PATCH 092/250] Add handling for navigation cases Signed-off-by: Matt Snell --- .../src/components/charts/LicenseTable.vue | 75 +++++++++++++------ 1 file changed, 51 insertions(+), 24 deletions(-) diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index b9aa70cb76..66cb51618f 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -5,7 +5,7 @@
Click on a license for a description of the license
- Click on a license count for a list of associated files
+ Click on a license count to download a list of associated files

{{header}}
@@ -69,43 +69,70 @@ // uses: this.endpoint({endpoints: [], repos (optional): [], repoGroups (optional): []}) ]), linfoF: function () { - let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)) - let repoID = apiData[Object.keys(apiData)[0]].repo_id; - let groupID = apiData[Object.keys(apiData)[0]].repo_group_id; + // @ts-ignore + let type = window.performance.getEntriesByType("navigation")[0].type + let repoID = null; + let groupID = null; + let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); + // @ts-ignore + if (type === "reload") { + repoID = apiData[Object.keys(apiData)[0]].repo_id; + groupID = apiData[Object.keys(apiData)[0]].repo_group_id; + } else { + repoID = apiData[Object.keys(apiData)[1]].repo_id; + groupID = apiData[Object.keys(apiData)[1]].repo_group_id; + } fetch(`http://localhost:5000/api/unstable/500/False/${groupID}/${repoID}/license-files`) .then(res => res.json()) .then(res => { - console.log('LICENSE FILES'); let res_refined:{ [index:string] : number } = {}; for(let i in res) res_refined[Number(i)] = res[i].file_name let uriContent = URL.createObjectURL(new Blob([JSON.stringify(res_refined, null, 2)], {type : 'text/json;charset=utf-8'})); let link = document.createElement('a'); link.setAttribute('href', uriContent); - link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + if (type === "reload") { + link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + } else { + link.setAttribute('download', Object.keys(apiData)[1] + "." + res[0].short_name + ".files.json"); + } let event = new MouseEvent('click'); link.dispatchEvent(event); }); }, linfo: function (license_id) { - let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)) - let repoID = apiData[Object.keys(apiData)[0]].repo_id; - let groupID = apiData[Object.keys(apiData)[0]].repo_group_id; - fetch(`http://localhost:5000/api/unstable/${license_id}/True/${groupID}/${repoID}/license-files`) - .then(res => res.json()) - .then(res => { - console.log('LICENSE FILES'); - let res_refined:{ [index:string] : number } = {}; - for(let i in res) - res_refined[Number(i)] = res[i].file_name - let uriContent = URL.createObjectURL(new Blob([JSON.stringify(res_refined, null, 2)], {type : 'text/json;charset=utf-8'})); - let link = document.createElement('a'); - link.setAttribute('href', uriContent); - link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); - let event = new MouseEvent('click'); - link.dispatchEvent(event); - }); - } + // @ts-ignore + let type = window.performance.getEntriesByType("navigation")[0].type + let repoID = null; + let groupID = null; + let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); + if (type === "reload") { + repoID = apiData[Object.keys(apiData)[0]].repo_id; + groupID = apiData[Object.keys(apiData)[0]].repo_group_id; + } else { + repoID = apiData[Object.keys(apiData)[1]].repo_id; + groupID = apiData[Object.keys(apiData)[1]].repo_group_id; + } + console.log("*********************") + console.log(repoID) + fetch(`http://localhost:5000/api/unstable/${license_id}/True/${groupID}/${repoID}/license-files`) + .then(res => res.json()) + .then(res => { + let res_refined:{ [index:string] : number } = {}; + for(let i in res) + res_refined[Number(i)] = res[i].file_name + let uriContent = URL.createObjectURL(new Blob([JSON.stringify(res_refined, null, 2)], {type : 'text/json;charset=utf-8'})); + let link = document.createElement('a'); + link.setAttribute('href', uriContent); + if (type === "reload") { + link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + } else { + link.setAttribute('download', Object.keys(apiData)[1] + "." + res[0].short_name + ".files.json"); + } + let event = new MouseEvent('click'); + link.dispatchEvent(event); + }); + } } }) export default class CountBlock extends AppProps{ From 06be83838d4c89e54e525f70b96c7ba4331e8e75 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Wed, 20 Nov 2019 13:31:42 -0600 Subject: [PATCH 093/250] Fix NOASSERTION Signed-off-by: Matt Snell --- frontend/src/components/charts/LicenseTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 66cb51618f..e0364b8208 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -94,7 +94,7 @@ if (type === "reload") { link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); } else { - link.setAttribute('download', Object.keys(apiData)[1] + "." + res[0].short_name + ".files.json"); + link.setAttribute('download', Object.keys(apiData)[1] + ".NOASSERTION.files.json"); } let event = new MouseEvent('click'); link.dispatchEvent(event); From 2eb653b0e9465168858b0be897d45b5264d8b0ca Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Wed, 20 Nov 2019 16:08:58 -0600 Subject: [PATCH 094/250] Fixing logging errors. --- workers/facade_worker/facade_worker/facade03analyzecommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/facade_worker/facade_worker/facade03analyzecommit.py b/workers/facade_worker/facade_worker/facade03analyzecommit.py index a1ea443909..ee1dbcb7ea 100644 --- a/workers/facade_worker/facade_worker/facade03analyzecommit.py +++ b/workers/facade_worker/facade_worker/facade03analyzecommit.py @@ -175,7 +175,7 @@ def store_commit(repos_id,commit,filename, committer_name,committer_email,discover_alias(committer_email),committer_date,committer_timestamp, added,removed,whitespace,committer_date,cfg.tool_source,cfg.tool_version,cfg.data_source)) except: - cfg.log_activity('Info', 'Something wrong in error log for timezone error %s %s' % committer_timestamp,author_timestamp ) + cfg.log_activity('Info', 'Something wrong in error log for timezone error') cfg.log_activity('Debug','Stored commit: %s' % commit) From 6be73a04ea492ebbd8e9d7b720f660c328e75966 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Thu, 21 Nov 2019 16:32:12 -0600 Subject: [PATCH 095/250] contributor model canonical email in alias table fix --- workers/github_worker/github_worker/worker.py | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/workers/github_worker/github_worker/worker.py b/workers/github_worker/github_worker/worker.py index 0046c31621..e70c216f06 100644 --- a/workers/github_worker/github_worker/worker.py +++ b/workers/github_worker/github_worker/worker.py @@ -464,7 +464,8 @@ def search_users(): cntrb_id = tuple['cntrb_id'] # Check existing contributors table tuple existing_tuples = self.retrieve_tuple({'cntrb_email': tuple['commit_email']}, ['contributors']) - if len(existing_tuples) < 1: + + def insert_cntrb(): # Prepare tuple for insertion to contributor table (build it off of the tuple queried) cntrb = tuple cntrb['cntrb_created_at'] = datetime.fromtimestamp(cntrb['cntrb_created_at']/1000) @@ -481,8 +482,21 @@ def search_users(): self.results_counter += 1 self.cntrb_id_inc = int(result.inserted_primary_key[0]) alias_id = self.cntrb_id_inc + + if len(existing_tuples) < 1: + insert_cntrb() elif len(existing_tuples) > 1: - logging.info("THERE IS A CASE FOR A DUPLICATE CONTRIBUTOR in the contributors table AND NEED TO ADD DELETION LOGIC\n") + logging.info("THERE IS A CASE FOR A DUPLICATE CONTRIBUTOR in the contributors table, we will delete all tuples with this cntrb_email and re-insert only 1\n") + logging.info("For cntrb_email: {}".format(tuple['commit_email'])) + deleteSQL = """ + DELETE + FROM + contributors + WHERE + cntrb_email = '{}' + """.format(tuple['commit_email']) + result = self.db.execute(deleteSQL) + insert_cntrb() else: alias_id = existing_tuples[0]['cntrb_id'] @@ -492,7 +506,7 @@ def search_users(): alias_tuple = { 'cntrb_id': cntrb_id, 'cntrb_a_id': alias_id, - 'canonical_email': cntrb_email, + 'canonical_email': tuple['cntrb_canonical'], 'alias_email': commit_email, 'cntrb_active': 1, "tool_source": self.tool_source, From 90637235183ac68b5d1d4009041c366fdaf25790 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 22 Nov 2019 10:55:18 -0600 Subject: [PATCH 096/250] Documentation Update --- docs/source/getting-started/installation.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/source/getting-started/installation.rst b/docs/source/getting-started/installation.rst index 52480a68ff..4fcbd1f686 100644 --- a/docs/source/getting-started/installation.rst +++ b/docs/source/getting-started/installation.rst @@ -26,6 +26,16 @@ During the installation process you will be asked to provide the following crede - port - user - password for the user specified above + +.. note:: + + You can create a user in postgres using these commands: + + >sudo -u postgres + >psql + postgres=# create database augur; + postgres=# create user augur with encrypted password 'mypass'; + postgres=# grant all privileges on database augur to augur; The installation process will automatically set up the schema for the data model if it hasn't been created yet. After the schema has been set up, you'll be asked if you want to load the schema with some sample data (around 24 MB). From 2da11a3c79006ddd08badd3f780c4709b71e6be2 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 22 Nov 2019 10:57:50 -0600 Subject: [PATCH 097/250] installation docs update --- docs/source/getting-started/installation.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/source/getting-started/installation.rst b/docs/source/getting-started/installation.rst index 4fcbd1f686..10be7f1895 100644 --- a/docs/source/getting-started/installation.rst +++ b/docs/source/getting-started/installation.rst @@ -13,6 +13,11 @@ Data collection You will need: - A `PostgreSQL 10 or higher `__ installation. + +.. code:: + +sudo apt-get install postgresql + One of the reasons that Augur is so powerful is because of our `unified data model <../architecture/data-model.rst>`_. In order to ensure this data model remains performant even with large amounts of data, we use PostgreSQL as @@ -63,6 +68,15 @@ You will need: - `vue-cli `__ - `node `__ - `npm `__ + +.. code:: + + sudo apt-get install python3-pip + sudo pip3 install virtualenv + sudo apt install npm + npm config set prefix ~/.npm + npm install -g @vue/cli + npm install vue.js We use Vue.js as our frontend web framework, and ``npm`` as our package manager. From 169ee6b4e05d4529c45381f41f31b00ba03669c6 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 22 Nov 2019 11:03:23 -0600 Subject: [PATCH 098/250] installation doc update. --- docs/source/getting-started/installation.rst | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/source/getting-started/installation.rst b/docs/source/getting-started/installation.rst index 10be7f1895..1403864e1b 100644 --- a/docs/source/getting-started/installation.rst +++ b/docs/source/getting-started/installation.rst @@ -31,8 +31,12 @@ During the installation process you will be asked to provide the following crede - port - user - password for the user specified above - -.. note:: + +.. note:: + + The code block below contains the commands you need to install postgres and create an augur user. + +.. code:: You can create a user in postgres using these commands: @@ -68,6 +72,10 @@ You will need: - `vue-cli `__ - `node `__ - `npm `__ + +.. note:: + + The code block below contains the commands you need to install these dependencies. .. code:: From 3e9396f1e94a8087b694f0832fe8f9ad7cf2f7f3 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 22 Nov 2019 11:06:04 -0600 Subject: [PATCH 099/250] install update --- docs/source/getting-started/installation.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/source/getting-started/installation.rst b/docs/source/getting-started/installation.rst index 1403864e1b..0336cff253 100644 --- a/docs/source/getting-started/installation.rst +++ b/docs/source/getting-started/installation.rst @@ -38,10 +38,9 @@ During the installation process you will be asked to provide the following crede .. code:: - You can create a user in postgres using these commands: - - >sudo -u postgres - >psql + sudo apt-get install postgresql + sudo -u postgres + psql postgres=# create database augur; postgres=# create user augur with encrypted password 'mypass'; postgres=# grant all privileges on database augur to augur; From af751f3b52a8bb2e1520af19b73fc646ca571b2e Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 22 Nov 2019 18:30:34 -0600 Subject: [PATCH 100/250] Added schema update to install script: psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update.sql --- util/scripts/install/setup_db.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/util/scripts/install/setup_db.sh b/util/scripts/install/setup_db.sh index 7372562b10..94d8c34939 100755 --- a/util/scripts/install/setup_db.sh +++ b/util/scripts/install/setup_db.sh @@ -143,6 +143,7 @@ function create_db_schema() { psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/3-augur_operations.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/4-spdx.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/5-seed-data.sql + psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update.sql psql -h $host -d $database -U $db_user -p $port -a -w -c "UPDATE augur_data.settings SET VALUE = '$facade_repo_path' WHERE setting='repo_directory';" echo "Schema created" From bbdf3bfb85cfbebed28df5dc626a3001b4f4fc0e Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sat, 23 Nov 2019 09:18:24 -0600 Subject: [PATCH 101/250] schema 9 update. --- util/scripts/install/schema_update_8.sql | 705 +++++++++++++++++++++++ util/scripts/install/schema_update_9.sql | 2 + 2 files changed, 707 insertions(+) create mode 100644 util/scripts/install/schema_update_8.sql create mode 100644 util/scripts/install/schema_update_9.sql diff --git a/util/scripts/install/schema_update_8.sql b/util/scripts/install/schema_update_8.sql new file mode 100644 index 0000000000..30706665a5 --- /dev/null +++ b/util/scripts/install/schema_update_8.sql @@ -0,0 +1,705 @@ +/*** +Database update script. For release 8. + +***/ + + +------------------------------------------------- +-- Database history table. If the tables does not exist, then create it and populate it and run all this stuff. +-- This works for everything we already have deployed. After that, we will need the script to check the version in the table. +-- This release is version 8 of the schema. +------------------------------------------------- +CREATE TABLE "augur_operations"."augur_settings" ( +"id" serial8 NOT NULL, +"setting" varchar, +"value" varchar, +"last_modified" timestamp(0) DEFAULT CURRENT_DATE, +PRIMARY KEY ("id") +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."augur_settings" OWNER TO "augur"; + + +INSERT INTO "augur_operations"."augur_settings"("id", "setting", "value", "last_modified") VALUES (1, 'augur_data_version', '8', '2019-11-18 08:41:51'); + +------------------------------------------------- + +------------------------------------------------- + + +-- Updates to commit timestamps +ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_author_timestamp" TYPE timestamptz(0) USING "cmt_author_timestamp"::timestamptz(0); + +ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_committer_timestamp" TYPE timestamptz(0) USING "cmt_committer_timestamp"::timestamptz(0); + + + +-- New operations tables + +CREATE TABLE "augur_operations"."worker_settings_facade" ( +"id" int4 NOT NULL, +"setting" varchar(32) COLLATE "default" NOT NULL, +"value" varchar COLLATE "default" NOT NULL, +"last_modified" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP, +CONSTRAINT "settings_pkey" PRIMARY KEY ("id") +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."worker_settings_facade" OWNER TO "augur"; + +CREATE TABLE "augur_operations"."repos_fetch_log" ( +"repos_id" int4 NOT NULL, +"status" varchar(128) COLLATE "default" NOT NULL, +"date" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP +) +WITHOUT OIDS; +CREATE INDEX "repos_id,statusops" ON "repos_fetch_log" USING btree ("repos_id" "pg_catalog"."int4_ops" ASC NULLS LAST, "status" "pg_catalog"."text_ops" ASC NULLS LAST); +ALTER TABLE "augur_operations"."repos_fetch_log" OWNER TO "augur"; + +CREATE TABLE "augur_operations"."working_commits" ( +"repos_id" int4 NOT NULL, +"working_commit" varchar(40) COLLATE "default" DEFAULT 'NULL'::character varying +) +WITHOUT OIDS; +ALTER TABLE "augur_operations"."working_commits" OWNER TO "augur"; + +insert into "augur_operations"."worker_settings_facade" select * from "augur_data"."settings"; + + + + +-- Contributor Alias Updates +ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; + +CREATE SEQUENCE "spdx"."projects_package_id_seq" +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1; + +-- SPDX Updates + +ALTER TABLE "spdx"."files" DROP CONSTRAINT "files_project_id_fkey"; + +ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; + +ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" DROP CONSTRAINT "projects_pkey"; + +ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); + +ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); + +SELECT setval('"spdx"."projects_package_id_seq"', 1000000, false); + +ALTER SEQUENCE "spdx"."projects_package_id_seq" +OWNED BY "spdx"."projects"."package_id"; + +ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; + + +-- Index Update for Performance +CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( + "repo_name" +); + +CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( + "repo_name" +); + +CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( + "rg_name" ASC +); + +CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( + "repo_group_id" +); + +CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( + "repo_git" +); + + + +-- Repo Badging Table Update. + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "id"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "user_id"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "name"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_url"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "general_comments"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updated_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "cpe"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_0"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieved_passing_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lost_passing_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "last_reminder_at"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "disabled_reminders"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implementation_languages"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lock_version"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_1"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_2"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_status"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_justification"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tiered_percentage"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_level"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "additional_rights"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_license"; + +ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_attribution"; + +ALTER TABLE "augur_data"."repo_badging" ADD COLUMN "data" jsonb; + +ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" TYPE timestamp(0) USING "created_at"::timestamp(0); + +ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" SET DEFAULT CURRENT_TIMESTAMP; + + + + diff --git a/util/scripts/install/schema_update_9.sql b/util/scripts/install/schema_update_9.sql new file mode 100644 index 0000000000..35115661d7 --- /dev/null +++ b/util/scripts/install/schema_update_9.sql @@ -0,0 +1,2 @@ +ALTER TABLE "augur_data"."issues" ADD CONSTRAINT "fk_issues_repo" FOREIGN KEY ("repo_id") REFERENCES "augur_data"."repo" ("repo_id") ON DELETE CASCADE ON UPDATE CASCADE; +update "augur_operations"."augur_settings" set value = 9 where setting = 'augur_data_version'; \ No newline at end of file From 4097d4e11dc10b64f570cec36d4e5a8514b838dd Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 23 Nov 2019 16:48:11 +0000 Subject: [PATCH 102/250] release notes update --- release_notes.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index f435f5f3e0..c325bac68a 100644 --- a/release_notes.md +++ b/release_notes.md @@ -2,4 +2,7 @@ ## Next Dev to Master Push 1. Schema update script -2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. \ No newline at end of file +2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. +3. There are now 2 schema update scripts that I have added to the installer. We need to include a status check for the schema version. + + From 7b648dd7d7994105247fbb957412c493b04c249b Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 23 Nov 2019 20:27:08 +0000 Subject: [PATCH 103/250] release notes update --- release_notes.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/release_notes.md b/release_notes.md index c325bac68a..3e36fbb118 100644 --- a/release_notes.md +++ b/release_notes.md @@ -4,5 +4,13 @@ 1. Schema update script 2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. 3. There are now 2 schema update scripts that I have added to the installer. We need to include a status check for the schema version. +4. Need to make some notes about postgres configuration for performance on large sets of data +5. Frontend configuration block +``` + "Frontend": { + "host": "0.0.0.0", + "port": "5002" + }, +``` From 21f59064d360b1375d37ed2b991d38948a63a89b Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sun, 24 Nov 2019 14:16:20 +0000 Subject: [PATCH 104/250] release notes update --- release_notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/release_notes.md b/release_notes.md index 3e36fbb118..0040bb7172 100644 --- a/release_notes.md +++ b/release_notes.md @@ -12,5 +12,10 @@ "port": "5002" }, ``` +6. `git config merge.renameLimit 999999999` lets your facade worker move files when there are large reorganizations in some of your projects +7. Sometimes when a repository moves, github will ask you for credentials. This caches them so your facade worker keeps runnign + - `git config --global credential.helper cache` + - `git config --global credential.helper 'cache --timeout=600000000000000'` + From fe64af3769a3127162339991a62860cbf599bb28 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sun, 24 Nov 2019 12:15:50 -0600 Subject: [PATCH 105/250] portr chages. --- util/scripts/install/schema_update.sql | 705 ------------------------- util/scripts/install/setup_db.sh | 4 +- 2 files changed, 3 insertions(+), 706 deletions(-) delete mode 100644 util/scripts/install/schema_update.sql diff --git a/util/scripts/install/schema_update.sql b/util/scripts/install/schema_update.sql deleted file mode 100644 index 30706665a5..0000000000 --- a/util/scripts/install/schema_update.sql +++ /dev/null @@ -1,705 +0,0 @@ -/*** -Database update script. For release 8. - -***/ - - -------------------------------------------------- --- Database history table. If the tables does not exist, then create it and populate it and run all this stuff. --- This works for everything we already have deployed. After that, we will need the script to check the version in the table. --- This release is version 8 of the schema. -------------------------------------------------- -CREATE TABLE "augur_operations"."augur_settings" ( -"id" serial8 NOT NULL, -"setting" varchar, -"value" varchar, -"last_modified" timestamp(0) DEFAULT CURRENT_DATE, -PRIMARY KEY ("id") -) -WITHOUT OIDS; -ALTER TABLE "augur_operations"."augur_settings" OWNER TO "augur"; - - -INSERT INTO "augur_operations"."augur_settings"("id", "setting", "value", "last_modified") VALUES (1, 'augur_data_version', '8', '2019-11-18 08:41:51'); - -------------------------------------------------- - -------------------------------------------------- - - --- Updates to commit timestamps -ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_author_timestamp" TYPE timestamptz(0) USING "cmt_author_timestamp"::timestamptz(0); - -ALTER TABLE "augur_data"."commits" ALTER COLUMN "cmt_committer_timestamp" TYPE timestamptz(0) USING "cmt_committer_timestamp"::timestamptz(0); - - - --- New operations tables - -CREATE TABLE "augur_operations"."worker_settings_facade" ( -"id" int4 NOT NULL, -"setting" varchar(32) COLLATE "default" NOT NULL, -"value" varchar COLLATE "default" NOT NULL, -"last_modified" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP, -CONSTRAINT "settings_pkey" PRIMARY KEY ("id") -) -WITHOUT OIDS; -ALTER TABLE "augur_operations"."worker_settings_facade" OWNER TO "augur"; - -CREATE TABLE "augur_operations"."repos_fetch_log" ( -"repos_id" int4 NOT NULL, -"status" varchar(128) COLLATE "default" NOT NULL, -"date" timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP -) -WITHOUT OIDS; -CREATE INDEX "repos_id,statusops" ON "repos_fetch_log" USING btree ("repos_id" "pg_catalog"."int4_ops" ASC NULLS LAST, "status" "pg_catalog"."text_ops" ASC NULLS LAST); -ALTER TABLE "augur_operations"."repos_fetch_log" OWNER TO "augur"; - -CREATE TABLE "augur_operations"."working_commits" ( -"repos_id" int4 NOT NULL, -"working_commit" varchar(40) COLLATE "default" DEFAULT 'NULL'::character varying -) -WITHOUT OIDS; -ALTER TABLE "augur_operations"."working_commits" OWNER TO "augur"; - -insert into "augur_operations"."worker_settings_facade" select * from "augur_data"."settings"; - - - - --- Contributor Alias Updates -ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; - -CREATE SEQUENCE "spdx"."projects_package_id_seq" -INCREMENT 1 -MINVALUE 1 -MAXVALUE 2147483647 -START 1 -CACHE 1; - --- SPDX Updates - -ALTER TABLE "spdx"."files" DROP CONSTRAINT "files_project_id_fkey"; - -ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; - -ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; - -ALTER TABLE "spdx"."projects" DROP CONSTRAINT "projects_pkey"; - -ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); - -ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; - -ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); - -SELECT setval('"spdx"."projects_package_id_seq"', 1000000, false); - -ALTER SEQUENCE "spdx"."projects_package_id_seq" -OWNED BY "spdx"."projects"."package_id"; - -ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; - - --- Index Update for Performance -CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( - "repo_name" -); - -CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( - "repo_name" -); - -CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( - "rg_name" ASC -); - -CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( - "repo_group_id" -); - -CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( - "repo_git" -); - - - --- Repo Badging Table Update. - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "id"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "user_id"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "name"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_url"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "homepage_url_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_https_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "description_good_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interact_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contribution_requirements_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_location_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "floss_license_osi_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_basics_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_interface_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_public_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_track_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_interim_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "repo_distributed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_unique_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_semver_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "release_notes_vulns_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_url_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_tracker_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_process_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_responses_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "enhancement_responses_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "report_archive_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_process_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_private_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_response_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_common_tools_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_floss_tools_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_invocation_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_most_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_are_added_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tests_documented_added_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_fixed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "warnings_strict_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_secure_design_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "know_common_errors_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_published_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_call_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_floss_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_keylength_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_working_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_pfs_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_password_storage_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_random_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_mitm_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "delivery_unsigned_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_fixed_60_days_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerabilities_critical_fixed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_common_vulnerabilities_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_fixed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "static_analysis_often_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_unsafe_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_enable_assertions_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dynamic_analysis_fixed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "general_comments"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updated_at"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_weaknesses_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_continuous_integration_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "cpe"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "discussion_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "no_leaked_credentials_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "english_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardening_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_used_network_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_tls12_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_certificate_verification_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_verification_private_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "hardened_site_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_common_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_reproducible_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_0"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieved_passing_at"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lost_passing_at"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "last_reminder_at"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "disabled_reminders"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implementation_languages"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "lock_version"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_1"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dco_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "governance_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_of_conduct_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "roles_responsibilities_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "access_continuity_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "bus_factor_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_roadmap_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_architecture_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_security_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_quick_start_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_current_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "documentation_achievements_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "accessibility_best_practices_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "internationalization_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "sites_password_security_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "maintenance_or_update_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_report_credit_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "vulnerability_response_process_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "coding_standards_enforced_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_standard_variables_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_preserve_debug_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_non_recursive_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "build_repeatable_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_standard_variables_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "installation_development_quick_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "external_dependencies_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "dependency_monitoring_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "updateable_reused_components_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "interfaces_current_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "automated_integration_testing_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "regression_tests_added50_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage80_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_policy_mandated_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "implement_secure_design_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "input_validation_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_algorithm_agility_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "crypto_credential_agility_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "signed_releases_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "version_tags_signed_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_percentage_2"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "contributors_unassociated_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "copyright_per_file_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "license_per_file_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "small_tasks_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "require_2FA_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "secure_2FA_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "code_review_standards_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "two_person_review_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_statement_coverage90_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "test_branch_coverage80_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "security_review_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "assurance_case_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_passing_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_status"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "achieve_silver_justification"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "tiered_percentage"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "badge_level"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "additional_rights"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_license"; - -ALTER TABLE "augur_data"."repo_badging" DROP COLUMN "project_entry_attribution"; - -ALTER TABLE "augur_data"."repo_badging" ADD COLUMN "data" jsonb; - -ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" TYPE timestamp(0) USING "created_at"::timestamp(0); - -ALTER TABLE "augur_data"."repo_badging" ALTER COLUMN "created_at" SET DEFAULT CURRENT_TIMESTAMP; - - - - diff --git a/util/scripts/install/setup_db.sh b/util/scripts/install/setup_db.sh index 94d8c34939..abc99bc27b 100755 --- a/util/scripts/install/setup_db.sh +++ b/util/scripts/install/setup_db.sh @@ -143,7 +143,9 @@ function create_db_schema() { psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/3-augur_operations.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/4-spdx.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/5-seed-data.sql - psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update.sql + psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update_8.sql + psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update_9.sql + psql -h $host -d $database -U $db_user -p $port -a -w -c "UPDATE augur_data.settings SET VALUE = '$facade_repo_path' WHERE setting='repo_directory';" echo "Schema created" From 3470743475db5622517da7ab8be15b98d34b5fb5 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 25 Nov 2019 10:20:40 -0600 Subject: [PATCH 106/250] Link to OSI approved license lists Signed-off-by: Matt Snell --- frontend/src/components/charts/OsiCard.vue | 95 +++++++++++++++++----- 1 file changed, 73 insertions(+), 22 deletions(-) diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue index 71a49637c0..cbf5ff85db 100644 --- a/frontend/src/components/charts/OsiCard.vue +++ b/frontend/src/components/charts/OsiCard.vue @@ -5,9 +5,22 @@

{{ OSIpercent[0] }}%

- OSI Approved: {{ OSIpercent[1] }}
- Not OSI Approved: {{ OSIpercent[2] }}
- Total: {{ OSIpercent[3] }}
+ OSI Approved: + + + {{ OSIpercent[1] }} + +
+ Not OSI Approved: + + + {{ OSIpercent[2] }} + +
+ Total: + + {{ OSIpercent[3] }} +

@@ -43,26 +56,26 @@ console.log(check) // @ts-ignore for (let el of this.values) { - let count = el['count']; - let shortname = el['short_name']; - // @ts-ignore - let determin = check.default[shortname]; - if (determin === true){ - tcount += count - } else if (determin === false) { - fcount += count + let count = el['count']; + let shortname = el['short_name']; + // @ts-ignore + let determin = check.default[shortname]; + if (determin === true){ + tcount += count + } else if (determin === false) { + fcount += count + } } - } - let bigcount = (tcount + fcount) - let prepercent = tcount / (tcount + fcount) - console.log(tcount + fcount) - console.log(tcount) - console.log(fcount) - let percent = prepercent * 100 - let fixed = 2 || 0; - fixed = Math.pow(10, fixed); - percent = Math.floor(percent * fixed) / fixed; - return [percent, tcount, fcount, bigcount] + let bigcount = (tcount + fcount) + let prepercent = tcount / (tcount + fcount) + console.log(tcount + fcount) + console.log(tcount) + console.log(fcount) + let percent = prepercent * 100 + let fixed = 2 || 0; + fixed = Math.pow(10, fixed); + percent = Math.floor(percent * fixed) / fixed; + return [percent, tcount, fcount, bigcount] }, ...mapGetters('compare',[ 'comparedRepos', @@ -70,6 +83,44 @@ ]), }, methods: { + list: function(indi) { + let oList = {} + let i = 0 + for (let el of this.values) { + let count = el['count']; + let shortname = el['short_name']; + // @ts-ignore + let determin = check.default[shortname]; + if (determin === true && indi == true){ + oList[i] = shortname + i += 1 + } else if (determin === false && indi == false) { + oList[i] = shortname + i += 1 + } + } + let type = window.performance.getEntriesByType("navigation")[0].type + let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); + console.log(oList) + let uriContent = URL.createObjectURL(new Blob([JSON.stringify(oList, null, 2)], {type : 'text/json;charset=utf-8'})); + let link = document.createElement('a'); + link.setAttribute('href', uriContent); + if (type === "reload") { + if (indi == true) { + link.setAttribute('download', Object.keys(apiData)[0] + ".approved.licenses.json"); + } else { + link.setAttribute('download', Object.keys(apiData)[0] + ".notapproved.licenses.json"); + } + } else { + if (indi == true) { + link.setAttribute('download', Object.keys(apiData)[1] + ".approved.licenses.json"); + } else { + link.setAttribute('download', Object.keys(apiData)[1] + ".notapproved.licenses.json"); + } + } + let event = new MouseEvent('click'); + link.dispatchEvent(event); + }, ...mapActions('common',[ 'endpoint', // map `this.endpoint({...})` to `this.$store.dispatch('endpoint', {...})` // uses: this.endpoint({endpoints: [], repos (optional): [], repoGroups (optional): []}) From e2c8e234207f3790dba53de86b06c995f07fcc96 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 25 Nov 2019 10:50:59 -0600 Subject: [PATCH 107/250] Remove bold tags on OSI links Signed-off-by: Matt Snell {{ OSIpercent[0] }}%

OSI Approved: - - + {{ OSIpercent[1] }} - -
+
Not OSI Approved: - - + {{ OSIpercent[2] }} - -
+
Total: {{ OSIpercent[3] }} From 7ebce2ff01be147b801ee6015f143ca602eaa20b Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 25 Nov 2019 13:17:55 -0600 Subject: [PATCH 108/250] Add license_worker to config for spdx-scanner --- util/scripts/install/make_config.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/util/scripts/install/make_config.py b/util/scripts/install/make_config.py index 7d8648beb6..019c3b4ec8 100644 --- a/util/scripts/install/make_config.py +++ b/util/scripts/install/make_config.py @@ -128,7 +128,7 @@ def configure_workers(config, credentials): "github_worker": { "port": 56211, "switch": 0, - "workers": 2 + "workers": 2 }, "insight_worker": { "port": 56311, @@ -160,7 +160,14 @@ def configure_workers(config, credentials): "port": 56811, "switch": 0, "workers": 1 - } + }, + "license_worker": { + "port": 51242, + "switch": 0, + "workers": 1, + "tagfile": "3.0.tag", + "repo_directory": "/home/nebrethar" + } } print("Set default values for Workers") @@ -185,4 +192,4 @@ def main(): if __name__ == "__main__": - main() \ No newline at end of file + main() From 3069b0c40bc4fbe049c735a230e4864ebe30448e Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 25 Nov 2019 15:09:19 -0600 Subject: [PATCH 109/250] Midway commit (for testing) --- spdx-scanner/director.py | 10 +++++++--- spdx-scanner/dosocs2-c.conf | 30 ++++++++++++++++++++++++++++++ spdx-scanner/initial_scans.py | 4 +++- 3 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 spdx-scanner/dosocs2-c.conf diff --git a/spdx-scanner/director.py b/spdx-scanner/director.py index f8af515401..b629993fb7 100644 --- a/spdx-scanner/director.py +++ b/spdx-scanner/director.py @@ -18,12 +18,16 @@ host = config["Database"]["host"] port = config["Database"]["port"] dsfile = config["Workers"]["license_worker"]["tagfile"] - ipath = config["Workers"]["license_worker"]["repos_directory"] + ipath = config["Workers"]["facade_worker"]["repo_directory"] + configtools = 'postgresql://{}:{}@{}:{}/{}'.format( + user, password, host, port, dbname + ) + print("---------------------") print("INITIAL SCANS RUNNING") print("---------------------") - #s.scan(dbname, user, password, host, port, dsfile, ipath) + s.scan(dbname, user, password, host, port, dsfile, ipath) print("------------------") print("SBOM SCANS RUNNING") print("------------------") - #p.scan(dbname, user, password, host, port, dsfile, ipath) + p.scan(dbname, user, password, host, port, dsfile, ipath) diff --git a/spdx-scanner/dosocs2-c.conf b/spdx-scanner/dosocs2-c.conf new file mode 100644 index 0000000000..34b89a444b --- /dev/null +++ b/spdx-scanner/dosocs2-c.conf @@ -0,0 +1,30 @@ +# dosocs2 configuration file + +# Example uri +connection_uri = +# Schema to be used with postgresql + +schema = spdx + +# comma-separated list of scanners to run when none is explicitly +# specified. For 'dosocs2 scan' and 'dosocs2 oneshot' +default_scanners = nomos + +# new document namespace identifiers will start with this string +namespace_prefix = sqlite:///$(HOME)/.config/dosocs2/dosocs2.sqlite3 + +# If true, print all SQL statements to stdout as they are being executed +echo = False + +############ +# Scanners # +############ + +# Set the correct path for each +# If you used the included install-nomos.sh, the scanner_nomos_path +# should already be correct. +scanner_nomos_path = /usr/local/share/fossology/nomos/agent/nomossa + +# optional ignore regex +# nomos will ignore files whose absolute path matches the regex +# scanner_nomos_ignore = .*\.class$ diff --git a/spdx-scanner/initial_scans.py b/spdx-scanner/initial_scans.py index 0dc7cf4eab..6b43364bc8 100644 --- a/spdx-scanner/initial_scans.py +++ b/spdx-scanner/initial_scans.py @@ -45,11 +45,13 @@ def scan(dbname, user, password, host, port, dsfile, ipath): #Attempt to create new DoSOCS entry print("CREATING NEW DOSOCS DOCUMENT") print(path) - p = subprocess.call(['dosocs2', 'scan', str(path)], shell=False, stdout=PIPE, stderr=PIPE) + p = subprocess.call(['dosocs2', 'scan', str(path), '-f', 'dosocs2-c.conf'], shell=False, stdout=PIPE, stderr=PIPE) (output) = p print("####################") print(output) print("RECORD CREATED") else: print("DUPLICATE RECORD FOUND. SKIPPING") + cur.execute("update augur_repo_map a set dosocs_pkg_name = b.name from packages b where a.repo_path = b.download_location;") + cur.execute("update augur_repo_map a set dosocs_pkg_id = b.package_id from packages b where a.repo_path = b.download_location;") return From cbc47e5b65f5c14764cfa5e06336d862609f67eb Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Mon, 25 Nov 2019 15:12:32 -0600 Subject: [PATCH 110/250] release notes update. --- release_notes.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index 0040bb7172..09f455b422 100644 --- a/release_notes.md +++ b/release_notes.md @@ -5,7 +5,7 @@ 2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. 3. There are now 2 schema update scripts that I have added to the installer. We need to include a status check for the schema version. 4. Need to make some notes about postgres configuration for performance on large sets of data -5. Frontend configuration block +5. Frontend configuration block, which should be an external hostname, and not 0.0.0.0 ``` "Frontend": { "host": "0.0.0.0", @@ -16,6 +16,15 @@ 7. Sometimes when a repository moves, github will ask you for credentials. This caches them so your facade worker keeps runnign - `git config --global credential.helper cache` - `git config --global credential.helper 'cache --timeout=600000000000000'` +8. augur-spdx worker block will be needed : +``` + "license_worker": { + "port": 59999, + "switch": 0, + "workers": 1, + "tagfile": "3.0.tag" + } +``` From 3b8236ea828f8b5757df839606ca3b0c6f3b454a Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Tue, 26 Nov 2019 07:16:32 -0600 Subject: [PATCH 111/250] Added changes to schema update and excel generator code. --- util/scripts/install/schema_update_8.sql | 6 +- .../facade_worker/excel_generators/.gitignore | 1 + .../excel_generators/ADDING_NEW_REPORTS | 16 ++ .../excel_generators/__init__.py | 13 ++ .../facade_worker/excel_generators/example.py | 154 ++++++++++++++++++ .../facade_worker/excel_generators/readme.md | 4 + 6 files changed, 191 insertions(+), 3 deletions(-) create mode 100644 workers/facade_worker/facade_worker/excel_generators/.gitignore create mode 100644 workers/facade_worker/facade_worker/excel_generators/ADDING_NEW_REPORTS create mode 100644 workers/facade_worker/facade_worker/excel_generators/__init__.py create mode 100644 workers/facade_worker/facade_worker/excel_generators/example.py create mode 100644 workers/facade_worker/facade_worker/excel_generators/readme.md diff --git a/util/scripts/install/schema_update_8.sql b/util/scripts/install/schema_update_8.sql index 30706665a5..83757192f5 100644 --- a/util/scripts/install/schema_update_8.sql +++ b/util/scripts/install/schema_update_8.sql @@ -70,7 +70,7 @@ insert into "augur_operations"."worker_settings_facade" select * from "augur_da -- Contributor Alias Updates ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; -CREATE SEQUENCE "spdx"."projects_package_id_seq" +CREATE SEQUENCE "spdx"."projects_package_id_seq_tw0" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 @@ -79,13 +79,13 @@ CACHE 1; -- SPDX Updates -ALTER TABLE "spdx"."files" DROP CONSTRAINT "files_project_id_fkey"; +ALTER TABLE "spdx"."files" DROP CONSTRAINT if exists "files_project_id_fkey"; ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; -ALTER TABLE "spdx"."projects" DROP CONSTRAINT "projects_pkey"; +ALTER TABLE "spdx"."projects" DROP CONSTRAINT if exists "projects_pkey"; ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); diff --git a/workers/facade_worker/facade_worker/excel_generators/.gitignore b/workers/facade_worker/facade_worker/excel_generators/.gitignore new file mode 100644 index 0000000000..bc64afa8a0 --- /dev/null +++ b/workers/facade_worker/facade_worker/excel_generators/.gitignore @@ -0,0 +1 @@ +generate*.py diff --git a/workers/facade_worker/facade_worker/excel_generators/ADDING_NEW_REPORTS b/workers/facade_worker/facade_worker/excel_generators/ADDING_NEW_REPORTS new file mode 100644 index 0000000000..d0281820c8 --- /dev/null +++ b/workers/facade_worker/facade_worker/excel_generators/ADDING_NEW_REPORTS @@ -0,0 +1,16 @@ + +The scripts in this directory are used to automatically generate Excel files. +They are intended to provide a focused view of the data, such as tables with +combined statistics (e.g., projects across the X axis, affiliations down the Y +axis, LoC added with number of contributors in parenthesis as the data, with one +year on each spreadsheet. These files are stashed in the files/ directory for +download. + +To create a new summary file with custom data, copy example.py and modify the +SQL statements. You'll know you have it right when you run the new generator +script directly and it drops a correct Excel file in the files/ directory. + +To automatically regenerate the Excel file each time facade-worker.py runs, +first ensure that your file runs without errors. Then change its name to: + "generate-.py" + diff --git a/workers/facade_worker/facade_worker/excel_generators/__init__.py b/workers/facade_worker/facade_worker/excel_generators/__init__.py new file mode 100644 index 0000000000..18f4bf4ba9 --- /dev/null +++ b/workers/facade_worker/facade_worker/excel_generators/__init__.py @@ -0,0 +1,13 @@ +#!/usr/bin/python3 + +import os +import glob + +files = glob.glob('%s/generate*.py' % os.path.dirname(__file__)) + +__all__ = list() + +for f in files: + if os.path.isfile(f): + __all__.append(os.path.basename(f)[:-3]) + diff --git a/workers/facade_worker/facade_worker/excel_generators/example.py b/workers/facade_worker/facade_worker/excel_generators/example.py new file mode 100644 index 0000000000..f837fcffc3 --- /dev/null +++ b/workers/facade_worker/facade_worker/excel_generators/example.py @@ -0,0 +1,154 @@ +#!/usr/bin/python3 + +# Copyright 2017-2018 Brian Warner +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +# Create summary Excel file +# +# This script creates a formatted Excel file for easier use in reports. It can +# also be used as a template for generating other types of Excel files. Main +# places to be modified when creating a derivative script are marked with #--> + +import sys +import MySQLdb +import imp +import time +import datetime +import xlsxwriter +import os + +dirname = os.path.dirname +filepath = os.path.abspath(__file__) +sys.path.append(dirname(dirname(filepath))) + +try: + imp.find_module('db') + from db import db,cursor +except: + sys.exit("Can't find db.py. Have you created it?") + +def get_setting(setting): + +# Get a setting from the database + + query = ("SELECT value FROM settings WHERE setting='%s' ORDER BY " + "last_modified DESC LIMIT 1" % setting) + cursor.execute(query) + return cursor.fetchone()["value"] + +### The real program starts here ### + +#--> Set your filename + +filename = 'facade_summary-projects_by_LoC_and_number_contributors_by_year.xlsx' + +#--> Set the description of the data + +detail = 'LoC added (Unique emails)' + +#--> Change this to modify the names of each worksheet + +sheets = reversed(list(range(int(get_setting('start_date')[:4]), + datetime.datetime.now().year + 1))) + +#--> Change this to modify the x axis + +get_x_axis = "SELECT name,id FROM projects" + +cursor.execute(get_x_axis) +x_axis = list(cursor) + +facade_dir = dirname(dirname(dirname(filepath))) +outfile = os.path.join(facade_dir,'files',filename) + +workbook = xlsxwriter.Workbook(outfile) + +bold = workbook.add_format({'bold': True}) +italic = workbook.add_format({'italic': True}) +bold_italic = workbook.add_format({'bold': True, 'italic': True}) +numformat = workbook.add_format({'num_format': '#,##0'}) + +for sheet in sheets: + + worksheet = workbook.add_worksheet(str(sheet)) + + worksheet.write(1,1,'Report generated on %s by Facade' % + time.strftime('%Y-%m-%d'),bold) + worksheet.write(2,1,'https://github.com/brianwarner/facade') + worksheet.write(3,1,'Format: %s' % detail) + + top_row = 5 + first_col = 1 + + col = first_col + 1 + + for x in x_axis: + + #--> Change the value of x[''] to match SELECT statment + + worksheet.write(top_row,col,x['name'],bold_italic) + + col += 1 + + #--> Change this to modify the y axis + + get_y_axis = ("SELECT DISTINCT affiliation FROM project_annual_cache " + "WHERE year = %s " + "ORDER BY affiliation ASC" + % sheet) + + cursor.execute(get_y_axis) + y_axis = list(cursor) + + row = top_row + 1 + + for y in y_axis: + + #--> Change the value of y[''] to match SELECT statement + + worksheet.write(row,first_col,y['affiliation'],bold) + + col = first_col + 1 + + for x in x_axis: + + #--> Change this to modify the data + + get_stats = ("SELECT FORMAT(SUM(added),0) AS added, " + "FORMAT(COUNT(email),0) AS emails " + "FROM project_annual_cache " + "WHERE affiliation = '%s' " + "AND projects_id = %s " + "AND year = %s" + % (y['affiliation'].replace("'","\\'"), + x['id'], sheet)) + + cursor.execute(get_stats) + stats = list(cursor) + + for stat in stats: + + #--> Change this to define the format for each data point + + if stat['added']: + worksheet.write(row,col,'%s (%s)' + % (stat['added'], stat['emails'])) + + col += 1 + row += 1 + +workbook.close() + diff --git a/workers/facade_worker/facade_worker/excel_generators/readme.md b/workers/facade_worker/facade_worker/excel_generators/readme.md new file mode 100644 index 0000000000..34dcf038c9 --- /dev/null +++ b/workers/facade_worker/facade_worker/excel_generators/readme.md @@ -0,0 +1,4 @@ +# README.md + +Excel Generators need to be refactored for Postgresql. + From 1495facbc676d9c52fa43b24460c6261aae90023 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 26 Nov 2019 11:22:43 -0600 Subject: [PATCH 112/250] Automate augur-spdx configuration --- .gitignore | 3 +++ spdx-scanner/director.py | 15 ++++++++++++--- .../{dosocs2-c.conf => dosocs2-example.conf} | 0 spdx-scanner/initial_scans.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) rename spdx-scanner/{dosocs2-c.conf => dosocs2-example.conf} (100%) diff --git a/.gitignore b/.gitignore index 2f318f0831..b404d76211 100644 --- a/.gitignore +++ b/.gitignore @@ -131,3 +131,6 @@ dmypy.json # Pyre type checker .pyre/ + +# Augur-spdx +./spdx-scanner/dosocs2.conf diff --git a/spdx-scanner/director.py b/spdx-scanner/director.py index b629993fb7..c0083b2618 100644 --- a/spdx-scanner/director.py +++ b/spdx-scanner/director.py @@ -19,15 +19,24 @@ port = config["Database"]["port"] dsfile = config["Workers"]["license_worker"]["tagfile"] ipath = config["Workers"]["facade_worker"]["repo_directory"] + configtools = 'postgresql://{}:{}@{}:{}/{}'.format( user, password, host, port, dbname ) - + + print(configtools) + with open("dosocs2-example.conf") as configfile: + content = configfile.read() + content_new = re.sub('(connection_uri = .*)\n', "connection_uri = " + configtools + "\n", content) + print(content_new) + with open("dosocs2.conf","w+") as outfile: + outfile.write(content_new) + print("---------------------") print("INITIAL SCANS RUNNING") print("---------------------") - s.scan(dbname, user, password, host, port, dsfile, ipath) + #s.scan(dbname, user, password, host, port, dsfile, ipath) print("------------------") print("SBOM SCANS RUNNING") print("------------------") - p.scan(dbname, user, password, host, port, dsfile, ipath) + #p.scan(dbname, user, password, host, port, dsfile, ipath) diff --git a/spdx-scanner/dosocs2-c.conf b/spdx-scanner/dosocs2-example.conf similarity index 100% rename from spdx-scanner/dosocs2-c.conf rename to spdx-scanner/dosocs2-example.conf diff --git a/spdx-scanner/initial_scans.py b/spdx-scanner/initial_scans.py index 6b43364bc8..36426d99ca 100644 --- a/spdx-scanner/initial_scans.py +++ b/spdx-scanner/initial_scans.py @@ -45,7 +45,7 @@ def scan(dbname, user, password, host, port, dsfile, ipath): #Attempt to create new DoSOCS entry print("CREATING NEW DOSOCS DOCUMENT") print(path) - p = subprocess.call(['dosocs2', 'scan', str(path), '-f', 'dosocs2-c.conf'], shell=False, stdout=PIPE, stderr=PIPE) + p = subprocess.call(['dosocs2', 'scan', str(path), '-f', 'dosocs2.conf'], shell=False, stdout=PIPE, stderr=PIPE) (output) = p print("####################") print(output) From f97a8f15b0496e29497c4160e54258dd85bebb1c Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 26 Nov 2019 11:24:49 -0600 Subject: [PATCH 113/250] gitignore and Quick Fix for Director Signed-off-by: Matt Snell --- .gitignore | 1 + spdx-scanner/director.py | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b404d76211..a73b3b8682 100644 --- a/.gitignore +++ b/.gitignore @@ -134,3 +134,4 @@ dmypy.json # Augur-spdx ./spdx-scanner/dosocs2.conf +spdx-scanner/dosocs2.conf diff --git a/spdx-scanner/director.py b/spdx-scanner/director.py index c0083b2618..7176198cde 100644 --- a/spdx-scanner/director.py +++ b/spdx-scanner/director.py @@ -19,16 +19,14 @@ port = config["Database"]["port"] dsfile = config["Workers"]["license_worker"]["tagfile"] ipath = config["Workers"]["facade_worker"]["repo_directory"] - + configtools = 'postgresql://{}:{}@{}:{}/{}'.format( user, password, host, port, dbname ) - print(configtools) with open("dosocs2-example.conf") as configfile: content = configfile.read() content_new = re.sub('(connection_uri = .*)\n', "connection_uri = " + configtools + "\n", content) - print(content_new) with open("dosocs2.conf","w+") as outfile: outfile.write(content_new) From 59bd2c251e687015b04558f76ac7bc03d912861c Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 26 Nov 2019 11:26:41 -0600 Subject: [PATCH 114/250] Remove repo_directory from SPDX worker Signed-off-by: Matt Snell --- util/scripts/install/make_config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/util/scripts/install/make_config.py b/util/scripts/install/make_config.py index 019c3b4ec8..a5e87ac789 100644 --- a/util/scripts/install/make_config.py +++ b/util/scripts/install/make_config.py @@ -95,7 +95,7 @@ def configure_defaults(config): "given": ["github_url"], "delay": 1000000, "repo_group_id": 0 - }, + }, { "delay": 1000000, "given": ["github_url"], @@ -165,8 +165,7 @@ def configure_workers(config, credentials): "port": 51242, "switch": 0, "workers": 1, - "tagfile": "3.0.tag", - "repo_directory": "/home/nebrethar" + "tagfile": "3.0.tag" } } print("Set default values for Workers") From bfd2d34b51659613dd842cf83c3873f7699c2a0e Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Tue, 26 Nov 2019 15:17:03 -0600 Subject: [PATCH 115/250] linux badge worker updates to more closely follow augwop and methods of other workers --- .../linux_badge_worker/runtime.py | 15 ++- .../linux_badge_worker/worker.py | 91 ++++++++++++------- 2 files changed, 66 insertions(+), 40 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/runtime.py b/workers/linux_badge_worker/linux_badge_worker/runtime.py index 87b08d5f8d..f2b5048786 100644 --- a/workers/linux_badge_worker/linux_badge_worker/runtime.py +++ b/workers/linux_badge_worker/linux_badge_worker/runtime.py @@ -15,18 +15,16 @@ def augwop_task(): """ AUGWOP endpoint that gets hit to add a task to the workers queue or is used to get the heartbeat/status of worker """ if request.method == 'POST': #will post a task to be added to the queue - print(request.json) + logging.info("Sending to work on task: {}".format(str(request.json))) app.gh_worker.task = request.json - #set task - return jsonify({"success": "sucess"}) + return Response(response=request.json, + status=200, + mimetype="application/json") if request.method == 'GET': #will retrieve the current tasks/status of the worker return jsonify({ - "status": gh_worker._queue if condition else condition_if_false, - "tasks": [{ - "given": list(gh_worker._queue) - }] + "status": "not implemented" }) - + @app.route("/AUGWOP/heartbeat", methods=['GET']) def heartbeat(): if request.method == 'GET': @@ -87,6 +85,7 @@ def main(augur_url, host, port): app.gh_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config create_server(app, None) + print(server['host'], worker_port) app.run(debug=app.debug, host=server['host'], port=worker_port) diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index b0e73b3479..12cddc0484 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -5,9 +5,8 @@ import sqlalchemy as s from sqlalchemy.ext.automap import automap_base from sqlalchemy import MetaData -logging.basicConfig(filename='worker.log', level=logging.INFO, filemode='w') - import ipdb +from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class CollectorTask: """ Worker's perception of a task in its queue @@ -45,8 +44,10 @@ def __init__(self, config, task=None): logging.info('Worker (PID: {}) initializing...'.format(str(os.getpid()))) self.db = None self.table = None + self.finishing_task = False + self.working_on = None - specs = { + self.specs = { "id": "com.augurlabs.core.badge_worker", "location": self.config['location'], "qualifications": [ @@ -72,7 +73,6 @@ def __init__(self, config, task=None): self.db = s.create_engine(self.DB_STR, poolclass=s.pool.NullPool, connect_args={'options': '-csearch_path={}'.format(dbschema)}) - # produce our own MetaData object metadata = MetaData() @@ -80,7 +80,6 @@ def __init__(self, config, task=None): # such as 'only' to limit what tables we look at... metadata.reflect(self.db, only=['repo_badging']) - # we can then produce a set of mappings from this MetaData. Base = automap_base(metadata=metadata) @@ -90,10 +89,8 @@ def __init__(self, config, task=None): # mapped classes are ready self.table = Base.classes.repo_badging.__table__ - self.run() - - requests.post('http://{}:{}/api/workers'.format(self.config['broker_host'],self.config['broker_port'], json=specs)) #hello message - + # Send broker hello message + connect_to_broker(self, logging.getLogger()) def update_config(self, config): """ Method to update config and set a default @@ -119,25 +116,23 @@ def task(self, value): """ entry point for the broker to add a task to the queue Adds this task to the queue, and calls method to process queue """ - git_url = value['given']['git_url'] - - """ Query all repos """ - repoUrlSQL = s.sql.text(""" - SELECT repo_id FROM repo WHERE repo_git = '{}' - """.format(git_url)) - rs = pd.read_sql(repoUrlSQL, self.db, params={}) - try: - self._queue.put(CollectorTask(message_type='TASK', entry_info={"git_url": git_url, "repo_id": rs.iloc[0]["repo_id"]})) - - # list_queue = dump_queue(self._queue) - # logging.info("worker's queue after adding the job: " + list_queue) - - except: - logging.info("that repo is not in our database") - if self._queue.empty(): - if 'github.com' in git_url: - self._task = value - self.run() + + if value['job_type'] == "UPDATE" or value['job_type'] == "MAINTAIN": + self._queue.put(value) + + if 'focused_task' in value: + if value['focused_task'] == 1: + logging.info("Focused task is ON\n") + self.finishing_task = True + else: + self.finishing_task = False + logging.info("Focused task is OFF\n") + else: + self.finishing_task = False + logging.info("focused task is OFF\n") + + self._task = value + self.run() def cancel(self): @@ -145,7 +140,7 @@ def cancel(self): """ self._task = None - def collect(self, num): + def badges_model(self, num): """ Data collection and storage method Query the github api for contributors and issues (not yet implemented) """ @@ -178,10 +173,42 @@ def collect(self, num): #if num < 3500: # self.collect(num + 1) + def collect(self): + """ Function to process each entry in the worker's task queue + Determines what action to take based off the message type + """ + while True: + if not self._queue.empty(): + message = self._queue.get() + self.working_on = message['job_type'] + else: + break + logging.info("Popped off message: {}\n".format(str(message))) + + if message['job_type'] == 'STOP': + break + + if message['job_type'] != 'MAINTAIN' and message['job_type'] != 'UPDATE': + raise ValueError('{} is not a recognized task type'.format(message['job_type'])) + pass + + """ Query all repos with repo url of given task """ + repoUrlSQL = s.sql.text(""" + SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' + """.format(message['given']['git_url'])) + repo_id = int(pd.read_sql(repoUrlSQL, self.db, params={}).iloc[0]['repo_id']) + + try: + if message['models'][0] == 'badges': + self.badges_model(message, repo_id) + except Exception as e: + register_task_failure(self, logging, message, repo_id, e) + pass + def run(self): """ Kicks off the processing of the queue if it is not already being processed Gets run whenever a new task is added """ - # if not self._child: - for i in range(1571, 3500): - self.collect(i) + logging.info("Running...\n") + self._child = Process(target=self.collect, args=()) + self._child.start() From 6b380c3d6d625616f79d702612ebab6d204614f2 Mon Sep 17 00:00:00 2001 From: Parth Sharma Date: Wed, 27 Nov 2019 18:34:13 +0530 Subject: [PATCH 116/250] update pull request worker The PR worker now is able to add events, labels, etc. to already existing PRs in the DB. Signed-off-by: Parth Sharma --- .../pull_request_worker/worker.py | 165 +++++++++++------- 1 file changed, 104 insertions(+), 61 deletions(-) diff --git a/workers/pull_request_worker/pull_request_worker/worker.py b/workers/pull_request_worker/pull_request_worker/worker.py index 1e06ac0202..c6ef6923f9 100644 --- a/workers/pull_request_worker/pull_request_worker/worker.py +++ b/workers/pull_request_worker/pull_request_worker/worker.py @@ -72,7 +72,7 @@ def __init__(self, config, task=None): 'pull_request_message_ref', 'pull_request_meta', 'pull_request_repo', 'pull_request_reviewers', 'pull_request_teams', 'message']) - helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job']) + helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job', 'worker_oauth']) Base = automap_base(metadata=metadata) HelperBase = automap_base(metadata=helper_metadata) @@ -175,7 +175,7 @@ def __init__(self, config, task=None): """.format(config['key'])) for oauth in [{'oauth_id': 0, 'access_token': config['key']}] + json.loads(pd.read_sql(oauthSQL, self.helper_db, params={}).to_json(orient="records")): # self.headers = {'Authorization': 'token %s' % oauth['access_token']} - self.headers = {'Authorization': 'token {}'.format(oauth['access_token']), + self.headers = {'Authorization': 'token {}'.format(oauth['access_token']), 'Accept': 'application/vnd.github.vixen-preview+json'} response = requests.get(url=url, headers=self.headers) self.oauths.append({ @@ -189,7 +189,7 @@ def __init__(self, config, task=None): if len(self.oauths) == 0: logging.info("No API keys detected, please include one in your config or in the worker_oauths table in the augur_operations schema of your database\n") - # First key to be used will be the one specified in the config (first element in + # First key to be used will be the one specified in the config (first element in # self.oauths array will always be the key in use) self.headers = {'Authorization': 'token %s' % self.oauths[0]['access_token']} @@ -272,7 +272,7 @@ def collect(self): raise ValueError('{} is not a recognized task type'.format(message['job_type'])) pass - """ Query all repos with repo url of given task """ + # Query all repos with repo url of given task repoUrlSQL = s.sql.text(""" SELECT min(repo_id) as repo_id FROM repo WHERE repo_git = '{}' """.format(message['given']['github_url'])) @@ -315,13 +315,13 @@ def query_pr(self, entry_info, repo_id): j = r.json() - new_prs = self.check_duplicates(j, pr_table_values, pseudo_key_gh) + self.mark_new_records(j, pr_table_values, pseudo_key_gh) - if len(new_prs) == 0: + if len(j) == 0: logging.info('No more unknown PRs... Exiting pagination') #break else: - prs += new_prs + prs += j if 'next' not in r.links: logging.info('No next page ... ') @@ -336,51 +336,63 @@ def query_pr(self, entry_info, repo_id): for pr_dict in prs: - pr = { - 'repo_id': repo_id, - 'pr_url': pr_dict['url'], - 'pr_src_id': pr_dict['id'], - 'pr_src_node_id': None, - 'pr_html_url': pr_dict['html_url'], - 'pr_diff_url': pr_dict['diff_url'], - 'pr_patch_url': pr_dict['patch_url'], - 'pr_issue_url': pr_dict['issue_url'], - 'pr_augur_issue_id': None, - 'pr_src_number': pr_dict['number'], - 'pr_src_state': pr_dict['state'], - 'pr_src_locked': pr_dict['locked'], - 'pr_src_title': pr_dict['title'], - 'pr_augur_contributor_id': None, - 'pr_body': pr_dict['body'], - 'pr_created_at': pr_dict['created_at'], - 'pr_updated_at': pr_dict['updated_at'], - 'pr_closed_at': pr_dict['closed_at'], - 'pr_merged_at': pr_dict['merged_at'], - 'pr_merge_commit_sha': pr_dict['merge_commit_sha'], - 'pr_teams': None, - 'pr_milestone': pr_dict['milestone']['title'] if pr_dict['milestone'] else None, - 'pr_commits_url': pr_dict['commits_url'], - 'pr_review_comments_url': pr_dict['review_comments_url'], - 'pr_review_comment_url': pr_dict['review_comment_url'], - 'pr_comments_url': pr_dict['comments_url'], - 'pr_statuses_url': pr_dict['statuses_url'], - 'pr_meta_head_id': None, - 'pr_meta_base_id': None, - 'pr_src_issue_url': pr_dict['issue_url'], - 'pr_src_comments_url': pr_dict['comments_url'], # NOTE: this seems redundant - 'pr_src_review_comments_url': pr_dict['review_comments_url'], # this too - 'pr_src_commits_url': pr_dict['commits_url'], # this one also seems redundant - 'pr_src_statuses_url': pr_dict['statuses_url'], - 'pr_src_author_association': pr_dict['author_association'], - 'tool_source': self.tool_source, - 'tool_version': self.tool_version, - 'data_source': 'GitHub API', - 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') - } + if pr_dict['to_insert']: + logging.info(f'PR {pr_dict["id"]} needs to be inserted') + + pr = { + 'repo_id': repo_id, + 'pr_url': pr_dict['url'], + 'pr_src_id': pr_dict['id'], + 'pr_src_node_id': None, + 'pr_html_url': pr_dict['html_url'], + 'pr_diff_url': pr_dict['diff_url'], + 'pr_patch_url': pr_dict['patch_url'], + 'pr_issue_url': pr_dict['issue_url'], + 'pr_augur_issue_id': None, + 'pr_src_number': pr_dict['number'], + 'pr_src_state': pr_dict['state'], + 'pr_src_locked': pr_dict['locked'], + 'pr_src_title': pr_dict['title'], + 'pr_augur_contributor_id': None, + 'pr_body': pr_dict['body'], + 'pr_created_at': pr_dict['created_at'], + 'pr_updated_at': pr_dict['updated_at'], + 'pr_closed_at': pr_dict['closed_at'], + 'pr_merged_at': pr_dict['merged_at'], + 'pr_merge_commit_sha': pr_dict['merge_commit_sha'], + 'pr_teams': None, + 'pr_milestone': pr_dict['milestone']['title'] if pr_dict['milestone'] else None, + 'pr_commits_url': pr_dict['commits_url'], + 'pr_review_comments_url': pr_dict['review_comments_url'], + 'pr_review_comment_url': pr_dict['review_comment_url'], + 'pr_comments_url': pr_dict['comments_url'], + 'pr_statuses_url': pr_dict['statuses_url'], + 'pr_meta_head_id': None, + 'pr_meta_base_id': None, + 'pr_src_issue_url': pr_dict['issue_url'], + 'pr_src_comments_url': pr_dict['comments_url'], # NOTE: this seems redundant + 'pr_src_review_comments_url': pr_dict['review_comments_url'], # this too + 'pr_src_commits_url': pr_dict['commits_url'], # this one also seems redundant + 'pr_src_statuses_url': pr_dict['statuses_url'], + 'pr_src_author_association': pr_dict['author_association'], + 'tool_source': self.tool_source, + 'tool_version': self.tool_version, + 'data_source': 'GitHub API', + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + } + + result = self.db.execute(self.pull_requests_table.insert().values(pr)) + logging.info(f"Added Pull Request: {result.inserted_primary_key}") + self.pr_id_inc = int(result.inserted_primary_key[0]) + + else: + logging.info("PR does not need to be inserted. Fetching its id from DB") + pr_id_sql = s.sql.text(""" + SELECT pull_request_id FROM pull_requests + WHERE pr_src_id={} + """.format(pr_dict['id'])) - result = self.db.execute(self.pull_requests_table.insert().values(pr)) - logging.info(f"Added Pull Request: {result.inserted_primary_key}") - self.pr_id_inc = int(result.inserted_primary_key[0]) + self.pr_id_inc = int(pd.read_sql(pr_id_sql, self.db).iloc[0]['pull_request_id']) self.query_labels(pr_dict['labels'], self.pr_id_inc) self.query_pr_events(owner, repo, pr_dict['number'], self.pr_id_inc) @@ -438,7 +450,7 @@ def query_pr_events(self, owner, repo, gh_pr_no, pr_id): + f'{gh_pr_no}/events?per_page=100') pseudo_key_gh = 'id' - psuedo_key_augur = 'pr_event_id' + psuedo_key_augur = 'issue_event_src_id' table = 'pull_request_events' pr_events_table_values = self.get_table_values({psuedo_key_augur: pseudo_key_gh}, [table]) @@ -592,10 +604,12 @@ def query_pr_meta(self, head, base, pr_id): table = 'pull_request_meta' meta_table_values = self.get_table_values({psuedo_key_augur: pseudo_key_gh}, [table]) - new_head = self.check_duplicates([head], meta_table_values, pseudo_key_gh) - new_base = self.check_duplicates([base], meta_table_values, pseudo_key_gh) + new_head = [head] + new_base = [base] + self.mark_new_records(new_head, meta_table_values, pseudo_key_gh) + self.mark_new_records(new_base, meta_table_values, pseudo_key_gh) - if new_head: + if new_head[0]['to_insert']: if new_head[0]['user'] and 'login' in new_head[0]['user']: cntrb_id = self.find_id_from_login(new_head[0]['user']['login']) else: @@ -619,14 +633,20 @@ def query_pr_meta(self, head, base, pr_id): self.pr_meta_id_inc = int(result.inserted_primary_key[0]) self.results_counter += 1 + else: + pr_meta_id_sql = """ + SELECT pr_repo_meta_id FROM pull_request_meta + WHERE pr_sha='{}' + """.format(new_head[0]['sha']) - if new_head[0]['repo']: - self.query_pr_repo(new_head[0]['repo'], 'head', self.pr_meta_id_inc) + self.pr_meta_id_inc = int(int(pd.read_sql(pr_meta_id_sql, self.db).iloc[0]['pr_repo_meta_id'])) + if new_head[0]['repo']: + self.query_pr_repo(new_head[0]['repo'], 'head', self.pr_meta_id_inc) else: logging.info('No new PR Head data to add') - if new_base: + if new_base[0]['to_insert']: if new_base[0]['user'] and 'login' in new_base[0]['user']: cntrb_id = self.find_id_from_login(new_base[0]['user']['login']) else: @@ -650,10 +670,16 @@ def query_pr_meta(self, head, base, pr_id): self.pr_meta_id_inc = int(result.inserted_primary_key[0]) self.results_counter += 1 + else: + pr_meta_id_sql = """ + SELECT pr_repo_meta_id FROM pull_request_meta + WHERE pr_sha='{}' + """.format(new_base[0]['sha']) - if new_base[0]['repo']: - self.query_pr_repo(new_base[0]['repo'], 'base', self.pr_meta_id_inc) + self.pr_meta_id_inc = int(int(pd.read_sql(pr_meta_id_sql, self.db).iloc[0]['pr_repo_meta_id'])) + if new_base[0]['repo']: + self.query_pr_repo(new_base[0]['repo'], 'base', self.pr_meta_id_inc) else: logging.info('No new PR Base data to add') @@ -769,7 +795,7 @@ def query_pr_repo(self, pr_repo, pr_repo_type, pr_meta_id): 'tool_source': self.tool_source, 'tool_version': self.tool_version, 'data_source': self.data_source, - 'data_collection_date': datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') + 'data_collection_date': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ') } result = self.db.execute( @@ -1055,3 +1081,20 @@ def check_duplicates(self, new_data, table_values, key): need_insertion.append(obj) logging.info("[Filtering] Page recieved has {} tuples, while filtering duplicates this was reduced to {} tuples.".format(str(len(new_data)), str(len(need_insertion)))) return need_insertion + + def mark_new_records(self, new_data, table_values, key): + """Adds a `to_insert` key to all the records in new_data. + Sets `to_insert` to `True` for new records and `False` for old records. + + :param new_data: A dict of records + :type new_data: dict + :param table_values: A dataframe of records from the DB + :type table_values: pandas.Dataframe + :param key: Key that determines the uniqueness of records in both `new_data` & `table_value` + :type key: str + """ + for record in new_data: + if not table_values.isin([record[key]]).any().any(): + record['to_insert'] = True + else: + record['to_insert'] = False From 699f3c90096538dc967fb4e2dd77d47e8700f710 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Mon, 2 Dec 2019 00:04:18 -0600 Subject: [PATCH 117/250] consistent dates on insight charts and updated rolling average times to 7 days prior --- .../src/components/charts/InsightChart.vue | 87 +++++++++++++++---- frontend/src/store/modules/common/index.ts | 2 +- 2 files changed, 69 insertions(+), 20 deletions(-) diff --git a/frontend/src/components/charts/InsightChart.vue b/frontend/src/components/charts/InsightChart.vue index daa089076c..9bc39ff9c2 100755 --- a/frontend/src/components/charts/InsightChart.vue +++ b/frontend/src/components/charts/InsightChart.vue @@ -30,12 +30,27 @@ export default { }; }, mounted() { + this.calculateVegaSpec(); this.$nextTick(() => { - this.calculateVegaSpec(); + window.onresize = this.calculateVegaSpec; console.log(window); }); }, + computed: { + earliest () { + if (!this.values[0]) return null + let d = new Date(this.values[this.values.length - 1].date) + console.log(d) + d.setYear(d.getYear() - 1); + return d + }, + latest () { + if (!this.values[0]) return null + let d = new Date(this.values[this.values.length - 1].date) + return d + } + }, methods: { calculateVegaSpec() { this.loaded = false; @@ -43,31 +58,59 @@ export default { let specWidth = this.$refs.holder.clientWidth * 0.75; let specHeight = this.$refs.holder.clientHeight * 0.75; this.values = this.data; + this.includeNullDates() this.vegaSpec = { $schema: "https://vega.github.io/schema/vega-lite/v2.json", center: true, width: specWidth, //263.7, height: specHeight, //166, padding: { left: specWidth * .1, top: 10, right: 0, bottom: 5 }, - mark: { - type: "line", - interpolate: "basis" - }, - encoding: { - x: { - timeUnit: "yearmonthdate", - field: "date", - type: "temporal", - axis: { grid: false, format: "%b %d" } + layer: [ + { + mark: { + type: "line", + interpolate: "basis" + }, + encoding: { + x: { + timeUnit: "yearmonthdate", + field: "date", + type: "temporal", + axis: { grid: false, format: "%b %d" } + // domain: [this.earliest, this.latest] + }, + y: { + // "aggregate": "sum", + field: "value", + type: "quantitative", + axis: { grid: false, title: false, ticks: false } + }, + color: { value: this.color } + } }, - y: { - // "aggregate": "sum", - field: "value", - type: "quantitative", - axis: { grid: false, title: false, ticks: false } - }, - color: { value: this.color } - } + { + mark: { + type: "line", + interpolate: "basis" + }, + encoding: { + x: { + timeUnit: "yearmonthdate", + field: "date", + type: "temporal", + axis: { grid: false, format: "%b %d" } + // domain: [this.earliest, this.latest] + }, + y: { + // "aggregate": "sum", + field: "test", + type: "quantitative", + axis: { grid: false, title: false, ticks: false } + }, + opacity: { value: 0 } + } + } + ] }; this.loaded = true; }, @@ -85,6 +128,12 @@ export default { el["field"] = field; }); return ary; + }, + includeNullDates () { + for (let date = new Date(this.values[0].date); date > (new Date(this.values[this.values.length - 1].date).setYear(2018)); date.setDate(date.getDate() - 1)){ + this.values.unshift({'date': date, 'test': 1}) + } + } } }; diff --git a/frontend/src/store/modules/common/index.ts b/frontend/src/store/modules/common/index.ts index 5719cdfc7d..e17be7f922 100644 --- a/frontend/src/store/modules/common/index.ts +++ b/frontend/src/store/modules/common/index.ts @@ -22,7 +22,7 @@ const state = { baseGroup: '', comparedRepoGroups: new Array(), comparedRepos: new Array(), - trailingAverage: 180, + trailingAverage: 30, startDate: new Date('1 February 2011'), endDate: new Date(), compare: 'rolling', From 43a8f43a87db6c2330c8e64471eaff0fad98b469 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Mon, 2 Dec 2019 00:27:20 -0600 Subject: [PATCH 118/250] removed gray bars and added descriptions under the line charts --- frontend/src/AugurStats.ts | 6 +++--- frontend/src/components/charts/DynamicLineChart.vue | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/frontend/src/AugurStats.ts b/frontend/src/AugurStats.ts index 9a3eb7255e..33504d196d 100755 --- a/frontend/src/AugurStats.ts +++ b/frontend/src/AugurStats.ts @@ -93,7 +93,7 @@ export default class AugurStats { console.log(addon.replace(/\./g,'')) addon = addon.replace(/\./g,'') - let extension = addon//(addon['githubURL']).split('/').join(''); + let extension = addon console.log(extension) mean = mean || AugurStats.averageArray(flat) let distances = flat.map((e:number) => { @@ -106,8 +106,8 @@ export default class AugurStats { newObj[key + extension] = e[key] } newObj['date' + addon] = newObj.date - newObj['upper' + extension] = e[key] + Math.sqrt(AugurStats.averageArray(distances)) - newObj['lower' + extension] = e[key] - Math.sqrt(AugurStats.averageArray(distances)) + // newObj['upper' + extension] = e[key] + Math.sqrt(AugurStats.averageArray(distances)) + // newObj['lower' + extension] = e[key] - Math.sqrt(AugurStats.averageArray(distances)) return newObj }) } diff --git a/frontend/src/components/charts/DynamicLineChart.vue b/frontend/src/components/charts/DynamicLineChart.vue index 9474b17f85..84679d1165 100755 --- a/frontend/src/components/charts/DynamicLineChart.vue +++ b/frontend/src/components/charts/DynamicLineChart.vue @@ -37,6 +37,7 @@ ⬇ JSON --> +

{{ getDescription }}
@@ -114,6 +115,11 @@ export default { } }, computed: { + getDescription() { + if (this.values[0]) return 'Each point on this line represents the 7 day trailing average of ' + this.values[0].field + '. The aim is to reflect a general trend that is visually interpretable by smoothing common one day spikes.' + //The gray line is the 7 day trailing standard deviation for those points. + else return '' + }, gitRepos() { return this.$store.getters.gitRepo; }, @@ -917,7 +923,6 @@ export default { }); console.log("DLC",rolling) } - normalized.push( AugurStats.standardDeviationLines(rolling, "valueRolling", ref) ); From dbdf36484b9a94f25eee1c8e893c2453e6e79bb7 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 2 Dec 2019 10:44:17 -0600 Subject: [PATCH 119/250] update to schema update scripts. --- util/scripts/install/schema_update_8.sql | 51 -------------------- util/scripts/install/schema_update_spdx.sql | 52 +++++++++++++++++++++ 2 files changed, 52 insertions(+), 51 deletions(-) create mode 100644 util/scripts/install/schema_update_spdx.sql diff --git a/util/scripts/install/schema_update_8.sql b/util/scripts/install/schema_update_8.sql index 83757192f5..dced1b880b 100644 --- a/util/scripts/install/schema_update_8.sql +++ b/util/scripts/install/schema_update_8.sql @@ -70,57 +70,6 @@ insert into "augur_operations"."worker_settings_facade" select * from "augur_da -- Contributor Alias Updates ALTER TABLE "augur_data"."contributors_aliases" ALTER COLUMN "data_collection_date" SET DEFAULT CURRENT_TIMESTAMP; -CREATE SEQUENCE "spdx"."projects_package_id_seq_tw0" -INCREMENT 1 -MINVALUE 1 -MAXVALUE 2147483647 -START 1 -CACHE 1; - --- SPDX Updates - -ALTER TABLE "spdx"."files" DROP CONSTRAINT if exists "files_project_id_fkey"; - -ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; - -ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; - -ALTER TABLE "spdx"."projects" DROP CONSTRAINT if exists "projects_pkey"; - -ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); - -ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; - -ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); - -SELECT setval('"spdx"."projects_package_id_seq"', 1000000, false); - -ALTER SEQUENCE "spdx"."projects_package_id_seq" -OWNED BY "spdx"."projects"."package_id"; - -ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; - - --- Index Update for Performance -CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( - "repo_name" -); - -CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( - "repo_name" -); - -CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( - "rg_name" ASC -); - -CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( - "repo_group_id" -); - -CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( - "repo_git" -); diff --git a/util/scripts/install/schema_update_spdx.sql b/util/scripts/install/schema_update_spdx.sql new file mode 100644 index 0000000000..6098938ca0 --- /dev/null +++ b/util/scripts/install/schema_update_spdx.sql @@ -0,0 +1,52 @@ +-- SPDX Updates + +CREATE SEQUENCE "spdx"."projects_package_id_seq_tw0" +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1; + + +ALTER TABLE "spdx"."files" DROP CONSTRAINT if exists "files_project_id_fkey"; + +ALTER TABLE "spdx"."files" ADD COLUMN "package_id" int4; + +ALTER TABLE "spdx"."files" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" DROP CONSTRAINT if exists "projects_pkey"; + +ALTER TABLE "spdx"."projects" ADD COLUMN "package_id" int4 NOT NULL DEFAULT nextval('"spdx".projects_package_id_seq'::regclass); + +ALTER TABLE "spdx"."projects" DROP COLUMN "project_id"; + +ALTER TABLE "spdx"."projects" ADD CONSTRAINT "projects_pkey" PRIMARY KEY ("package_id"); + +SELECT setval('"spdx"."projects_package_id_seq"', 1000000, false); + +ALTER SEQUENCE "spdx"."projects_package_id_seq" +OWNED BY "spdx"."projects"."package_id"; + +ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; + + +-- Index Update for Performance +CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( + "repo_name" +); + +CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( + "repo_name" +); + +CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( + "rg_name" ASC +); + +CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( + "repo_group_id" +); + +CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( + "repo_git" +); From 6d7f3cf9ad7dbfd14c9ab1a38036e6f08788b16e Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 2 Dec 2019 11:13:27 -0600 Subject: [PATCH 120/250] schema update update. --- .../6-schema_update_8.sql | 0 .../7-schema_update_9.sql | 0 util/scripts/install/setup_db.sh | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename util/scripts/install/schema_update_8.sql => persistence_schema/6-schema_update_8.sql (100%) rename util/scripts/install/schema_update_9.sql => persistence_schema/7-schema_update_9.sql (100%) diff --git a/util/scripts/install/schema_update_8.sql b/persistence_schema/6-schema_update_8.sql similarity index 100% rename from util/scripts/install/schema_update_8.sql rename to persistence_schema/6-schema_update_8.sql diff --git a/util/scripts/install/schema_update_9.sql b/persistence_schema/7-schema_update_9.sql similarity index 100% rename from util/scripts/install/schema_update_9.sql rename to persistence_schema/7-schema_update_9.sql diff --git a/util/scripts/install/setup_db.sh b/util/scripts/install/setup_db.sh index abc99bc27b..672d424862 100755 --- a/util/scripts/install/setup_db.sh +++ b/util/scripts/install/setup_db.sh @@ -143,8 +143,8 @@ function create_db_schema() { psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/3-augur_operations.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/4-spdx.sql psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/5-seed-data.sql - psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update_8.sql - psql -h $host -d $database -U $db_user -p $port -a -w -f ./schema_update_9.sql + psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/6-schema_update_8.sql + psql -h $host -d $database -U $db_user -p $port -a -w -f persistence_schema/7-schema_update_9.sql psql -h $host -d $database -U $db_user -p $port -a -w -c "UPDATE augur_data.settings SET VALUE = '$facade_repo_path' WHERE setting='repo_directory';" echo "Schema created" From ee30f342d073cad77db874fb38e42bb2cc621b27 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 2 Dec 2019 11:19:18 -0600 Subject: [PATCH 121/250] temporarily removed repo-badging data load --- persistence_schema/db_load.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistence_schema/db_load.sh b/persistence_schema/db_load.sh index e73f8b20de..92fadf3cec 100755 --- a/persistence_schema/db_load.sh +++ b/persistence_schema/db_load.sh @@ -42,7 +42,7 @@ psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_ psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_group_insights from 'persistence_schema/data/repo_group_insights.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_ghtorrent_map from 'persistence_schema/data/repo_ghtorrent_map.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_info from 'persistence_schema/data/repo_info.txt'" -psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_badging from 'persistence_schema/data/repo_badging.txt'" +# psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_badging from 'persistence_schema/data/repo_badging.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_insights from 'persistence_schema/data/repo_insights.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_insights_records from 'persistence_schema/data/repo_insights_records.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_labor from 'persistence_schema/data/repo_labor.txt'" From dcd858859d5cfb25caba5ac8fdc37d878f140075 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 2 Dec 2019 11:23:41 -0600 Subject: [PATCH 122/250] commented out repo_labor data load. Needs fixing. --- persistence_schema/db_load.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistence_schema/db_load.sh b/persistence_schema/db_load.sh index 92fadf3cec..699fbab218 100755 --- a/persistence_schema/db_load.sh +++ b/persistence_schema/db_load.sh @@ -45,7 +45,7 @@ psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_ # psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_badging from 'persistence_schema/data/repo_badging.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_insights from 'persistence_schema/data/repo_insights.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_insights_records from 'persistence_schema/data/repo_insights_records.txt'" -psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_labor from 'persistence_schema/data/repo_labor.txt'" +# psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_labor from 'persistence_schema/data/repo_labor.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_meta from 'persistence_schema/data/repo_meta.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.pull_request_reviewers from 'persistence_schema/data/pull_request_reviewers.txt'" psql -h $host -d $database -U $db_user -p $port -a -w -c "\copy augur_data.repo_test_coverage from 'persistence_schema/data/repo_test_coverage.txt'" From cead47ff4030063abab4aa7638b3647ed6cead79 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 2 Dec 2019 11:29:26 -0600 Subject: [PATCH 123/250] Updated indexes in augur_data for performance. --- persistence_schema/7-schema_update_9.sql | 24 ++++++++++++++++++++- util/scripts/install/schema_update_spdx.sql | 21 +----------------- 2 files changed, 24 insertions(+), 21 deletions(-) diff --git a/persistence_schema/7-schema_update_9.sql b/persistence_schema/7-schema_update_9.sql index 35115661d7..91569e35ff 100644 --- a/persistence_schema/7-schema_update_9.sql +++ b/persistence_schema/7-schema_update_9.sql @@ -1,2 +1,24 @@ ALTER TABLE "augur_data"."issues" ADD CONSTRAINT "fk_issues_repo" FOREIGN KEY ("repo_id") REFERENCES "augur_data"."repo" ("repo_id") ON DELETE CASCADE ON UPDATE CASCADE; -update "augur_operations"."augur_settings" set value = 9 where setting = 'augur_data_version'; \ No newline at end of file +update "augur_operations"."augur_settings" set value = 9 where setting = 'augur_data_version'; + + + -- Index Update for Performance +CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( + "repo_name" +); + +CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( + "repo_name" +); + +CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( + "rg_name" ASC +); + +CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( + "repo_group_id" +); + +CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( + "repo_git" +); \ No newline at end of file diff --git a/util/scripts/install/schema_update_spdx.sql b/util/scripts/install/schema_update_spdx.sql index 6098938ca0..0c633f50ca 100644 --- a/util/scripts/install/schema_update_spdx.sql +++ b/util/scripts/install/schema_update_spdx.sql @@ -30,23 +30,4 @@ OWNED BY "spdx"."projects"."package_id"; ALTER SEQUENCE "spdx"."projects_package_id_seq" OWNER TO "augur"; --- Index Update for Performance -CREATE INDEX "reponameindex" ON "augur_data"."repo" USING hash ( - "repo_name" -); - -CREATE INDEX "reponameindexbtree" ON "augur_data"."repo" USING btree ( - "repo_name" -); - -CREATE INDEX "rgnameindex" ON "augur_data"."repo_groups" USING btree ( - "rg_name" ASC -); - -CREATE INDEX "rggrouponrepoindex" ON "augur_data"."repo" USING btree ( - "repo_group_id" -); - -CREATE INDEX "repogitindexrep" ON "augur_data"."repo" USING btree ( - "repo_git" -); + From 0c62baa86d2a86420d86bf51f400611c16e52fa3 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 2 Dec 2019 13:26:26 -0600 Subject: [PATCH 124/250] Add "host" tracking to license api calls Signed-off-by: Matt Snell --- .gitignore | 1 + frontend/src/components/charts/LicenseTable.vue | 8 ++++++-- frontend/src/components/charts/OsiCard.vue | 4 ++++ frontend/src/views/RiskMetrics.vue | 2 ++ 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a73b3b8682..3b8a50ce36 100644 --- a/.gitignore +++ b/.gitignore @@ -135,3 +135,4 @@ dmypy.json # Augur-spdx ./spdx-scanner/dosocs2.conf spdx-scanner/dosocs2.conf +spdx-scanner/augur-spdx/ diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index e0364b8208..71113da24a 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -74,7 +74,9 @@ let repoID = null; let groupID = null; let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); + console.log(apiData) // @ts-ignore + let host = apiData[Object.keys(apiData)[0]]._host if (type === "reload") { repoID = apiData[Object.keys(apiData)[0]].repo_id; groupID = apiData[Object.keys(apiData)[0]].repo_group_id; @@ -82,7 +84,7 @@ repoID = apiData[Object.keys(apiData)[1]].repo_id; groupID = apiData[Object.keys(apiData)[1]].repo_group_id; } - fetch(`http://localhost:5000/api/unstable/500/False/${groupID}/${repoID}/license-files`) + fetch(`${host}/api/unstable/500/False/${groupID}/${repoID}/license-files`) .then(res => res.json()) .then(res => { let res_refined:{ [index:string] : number } = {}; @@ -106,6 +108,8 @@ let repoID = null; let groupID = null; let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); + // @ts-ignore + let host = apiData[Object.keys(apiData)[0]]._host if (type === "reload") { repoID = apiData[Object.keys(apiData)[0]].repo_id; groupID = apiData[Object.keys(apiData)[0]].repo_group_id; @@ -115,7 +119,7 @@ } console.log("*********************") console.log(repoID) - fetch(`http://localhost:5000/api/unstable/${license_id}/True/${groupID}/${repoID}/license-files`) + fetch(`${host}/api/unstable/${license_id}/True/${groupID}/${repoID}/license-files`) .then(res => res.json()) .then(res => { let res_refined:{ [index:string] : number } = {}; diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue index 6dc057c07b..4a7844de91 100644 --- a/frontend/src/components/charts/OsiCard.vue +++ b/frontend/src/components/charts/OsiCard.vue @@ -82,19 +82,23 @@ list: function(indi) { let oList = {} let i = 0 + // @ts-ignore for (let el of this.values) { let count = el['count']; let shortname = el['short_name']; // @ts-ignore let determin = check.default[shortname]; if (determin === true && indi == true){ + // @ts-ignore oList[i] = shortname i += 1 } else if (determin === false && indi == false) { + // @ts-ignore oList[i] = shortname i += 1 } } + // @ts-ignore let type = window.performance.getEntriesByType("navigation")[0].type let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); console.log(oList) diff --git a/frontend/src/views/RiskMetrics.vue b/frontend/src/views/RiskMetrics.vue index a29fe71d63..6a126f0307 100644 --- a/frontend/src/views/RiskMetrics.vue +++ b/frontend/src/views/RiskMetrics.vue @@ -51,6 +51,7 @@
+ Date: Mon, 2 Dec 2019 13:27:31 -0600 Subject: [PATCH 125/250] Remove CII table comment Signed-off-by: Matt Snell --- frontend/src/views/RiskMetrics.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/views/RiskMetrics.vue b/frontend/src/views/RiskMetrics.vue index 6a126f0307..a29fe71d63 100644 --- a/frontend/src/views/RiskMetrics.vue +++ b/frontend/src/views/RiskMetrics.vue @@ -51,7 +51,6 @@
- Date: Mon, 2 Dec 2019 13:37:32 -0600 Subject: [PATCH 126/250] fix description bug under line charts --- frontend/src/components/charts/DynamicLineChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/charts/DynamicLineChart.vue b/frontend/src/components/charts/DynamicLineChart.vue index 84679d1165..7b55ee4c32 100755 --- a/frontend/src/components/charts/DynamicLineChart.vue +++ b/frontend/src/components/charts/DynamicLineChart.vue @@ -116,7 +116,7 @@ export default { }, computed: { getDescription() { - if (this.values[0]) return 'Each point on this line represents the 7 day trailing average of ' + this.values[0].field + '. The aim is to reflect a general trend that is visually interpretable by smoothing common one day spikes.' + if (this.values[0]) return 'Each point on this line represents the 7 day trailing average of ' + this.values[0].name.split(' ')[1] + '. The aim is to reflect a general trend that is visually interpretable by smoothing common one day spikes.' //The gray line is the 7 day trailing standard deviation for those points. else return '' }, From ad83d9bff208febca54239a1ac87acf7cc33e924 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Tue, 3 Dec 2019 11:12:12 -0600 Subject: [PATCH 127/250] Fix file resolve on non-reload browser instances for licenses Signed-off-by: Matt Snell --- frontend/src/components/charts/CiiTable.vue | 4 ++-- frontend/src/components/charts/LicenseTable.vue | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/charts/CiiTable.vue b/frontend/src/components/charts/CiiTable.vue index c5225c69da..49f619d2fa 100644 --- a/frontend/src/components/charts/CiiTable.vue +++ b/frontend/src/components/charts/CiiTable.vue @@ -55,7 +55,7 @@ // data props loaded: boolean = false values: any[] = [] - + // compare getters base!:any comparedRepos!:any @@ -68,7 +68,7 @@ this.loaded = true this.values = this.data[this.source] } - + else { this.endpoint({endpoints:[this.source],repos:[this.base]}).then((tuples:any) => { let ref = this.base.url || this.base.repo_name diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 71113da24a..68aa689d5d 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -108,7 +108,6 @@ let repoID = null; let groupID = null; let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); - // @ts-ignore let host = apiData[Object.keys(apiData)[0]]._host if (type === "reload") { repoID = apiData[Object.keys(apiData)[0]].repo_id; @@ -131,7 +130,7 @@ if (type === "reload") { link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); } else { - link.setAttribute('download', Object.keys(apiData)[1] + "." + res[0].short_name + ".files.json"); + link.setAttribute('download', Object.keys(apiData)[1] + "." + res[1].short_name + ".files.json"); } let event = new MouseEvent('click'); link.dispatchEvent(event); From 6ed10f68cb2b9a5fdf8b94d17f55f5adc9b83150 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Wed, 4 Dec 2019 19:26:50 -0600 Subject: [PATCH 128/250] CII back-to-basics Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 33 +++++---------------- frontend/src/components/charts/CiiTable.vue | 13 ++++---- frontend/src/views/RiskMetrics.vue | 2 +- 3 files changed, 15 insertions(+), 33 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 16794b43bb..3915d35a1d 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -187,36 +187,20 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): :return: CII best parctices badge level """ # Welcome to the Twilight Zone - if repo_id: - cii_best_practices_badge_SQL = s.sql.text(""" - SELECT repo_name, rg_name, repo_badging.data, repo_badging.created_at as date - FROM repo_badging, repo, repo_groups - WHERE repo.repo_group_id = repo_groups.repo_group_id AND repo.repo_id = repo_badging.repo_id - AND repo_badging.repo_id = :repo_id - ORDER BY date DESC - LIMIT 1 - """) - - params = {'repo_id': repo_id} + cii_best_practices_badge_SQL = s.sql.text(""" + SELECT data + from augur_data.repo_badging + where repo_id = :repo_id; + """) - else: - cii_best_practices_badge_SQL = s.sql.text(""" - SELECT repo_name, rg_name, repo_badging.data, repo_badging.created_at as date - FROM repo_badging, repo, repo_groups - WHERE repo.repo_group_id = repo_groups.repo_group_id AND repo.repo_id = repo_badging.repo_id - AND repo.repo_group_id = :repo_group_id - ORDER BY date DESC - LIMIT 1 - """) + params = {'repo_id': repo_id} - params = {'repo_group_id': repo_group_id, 'repo_id': repo_id} + raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params=params)\ - raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params=params) - badging_data = raw_df.iloc[0,2] + badging_data = raw_df.iloc[0,0] result = { "repo_name": raw_df.iloc[0,0], - "rg_name": raw_df.iloc[0,1] } for item in badging_data.items(): @@ -224,7 +208,6 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): result[item[0]] = item[1] return pd.DataFrame(result, index=[0]) - @annotate(tag='forks') def forks(self, repo_group_id, repo_id=None): """ diff --git a/frontend/src/components/charts/CiiTable.vue b/frontend/src/components/charts/CiiTable.vue index 49f619d2fa..ca083beaa4 100644 --- a/frontend/src/components/charts/CiiTable.vue +++ b/frontend/src/components/charts/CiiTable.vue @@ -2,16 +2,15 @@ -

There is no CII Best Practices data for this repository

-

- +

+

- The badge status of {{el.repo_name}} is {{el.badge_level}} -
This information was last updated on {{el.date.split("T")[0]}} -
The CII ID is {{el.id}} -
More CII data for this project can be found at CII's best practices badging website. + The badge status of this repository is {{value.badge_level}} +
The CII ID is {{value.id}} +
More CII data for this project can be found at CII's best practices badging website. +

diff --git a/frontend/src/views/RiskMetrics.vue b/frontend/src/views/RiskMetrics.vue index a29fe71d63..d945b7624d 100644 --- a/frontend/src/views/RiskMetrics.vue +++ b/frontend/src/views/RiskMetrics.vue @@ -54,7 +54,7 @@

From 5647b5f3128c46621bf12d46e34e8308b6a42e1b Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Thu, 5 Dec 2019 12:06:47 -0600 Subject: [PATCH 129/250] Create make Install for spdx_worker and move spdx files Signed-off-by: Matt Snell --- .gitignore | 7 +- Makefile | 13 +- spdx-scanner/.gitignore | 1 - spdx-scanner/README.md | 2 - spdx-scanner/ex-raw.txt | 3173 ----------------- spdx-scanner/ex.json | 1 - util/scripts/install/install-spdx.sh | 16 + {spdx-scanner => workers/spdx_worker}/3.0.tag | 0 workers/spdx_worker/README.md | 2 + {spdx-scanner => workers/spdx_worker}/TODO.md | 0 .../spdx_worker}/director.py | 3 +- .../spdx_worker}/dosocs2-example.conf | 2 +- .../extra_tagfiles}/2.0.tag.coverage | 0 .../extra_tagfiles}/2.0.tag.short.nofiles | 0 .../spdx_worker}/initial_scans.py | 0 .../spdx_worker}/mac-notes.md | 0 .../spdx_worker}/sbom_populate.py | 0 17 files changed, 33 insertions(+), 3187 deletions(-) delete mode 100644 spdx-scanner/.gitignore delete mode 100644 spdx-scanner/README.md delete mode 100644 spdx-scanner/ex-raw.txt delete mode 100644 spdx-scanner/ex.json create mode 100644 util/scripts/install/install-spdx.sh rename {spdx-scanner => workers/spdx_worker}/3.0.tag (100%) create mode 100644 workers/spdx_worker/README.md rename {spdx-scanner => workers/spdx_worker}/TODO.md (100%) rename {spdx-scanner => workers/spdx_worker}/director.py (94%) rename {spdx-scanner => workers/spdx_worker}/dosocs2-example.conf (96%) rename {spdx-scanner => workers/spdx_worker/extra_tagfiles}/2.0.tag.coverage (100%) rename {spdx-scanner => workers/spdx_worker/extra_tagfiles}/2.0.tag.short.nofiles (100%) rename {spdx-scanner => workers/spdx_worker}/initial_scans.py (100%) rename {spdx-scanner => workers/spdx_worker}/mac-notes.md (100%) rename {spdx-scanner => workers/spdx_worker}/sbom_populate.py (100%) diff --git a/.gitignore b/.gitignore index 3b8a50ce36..133acb3ae0 100644 --- a/.gitignore +++ b/.gitignore @@ -133,6 +133,7 @@ dmypy.json .pyre/ # Augur-spdx -./spdx-scanner/dosocs2.conf -spdx-scanner/dosocs2.conf -spdx-scanner/augur-spdx/ +workers/spdx_worker/dosocs2.conf +workers/spdx_worker/augur-spdx/ +workers/spdx_worker/ex-raw.txt +workers/spdx_worker/ex.json diff --git a/Makefile b/Makefile index 15a4145850..f26034b169 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,11 @@ default: install: @ ./util/scripts/install/install.sh -install-augur-sbom: - @ ./util/scripts/install/nomos.sh +install-spdx: + @ ./util/scripts/install/install-spdx.sh + +install-augur-sbom: + @ ./util/scripts/install/nomos.sh version: $(eval OLDVERSION=$(shell $(AUGUR_PYTHON) ./util/print-version.py)) @@ -50,7 +53,7 @@ config: clean: @ echo "Removing node_modules, logs, caches, and some other dumb stuff that can be annoying..." - @ rm -rf runtime node_modules frontend/node_modules frontend/public augur.egg-info .pytest_cache logs + @ rm -rf runtime node_modules frontend/node_modules frontend/public augur.egg-info .pytest_cache logs @ find . -name \*.pyc -delete @ find . -type f -name "*.lock" -delete @@ -123,9 +126,9 @@ test-routes: @ $(AUGUR_PYTHON) test/api/test_api.py $(MODEL) -# +# # Documentation -# +# .PHONY: sphinx-docs sphinx-docs-view api-docs api-docs-view docs sphinx-docs: @ bash -c 'cd docs/ && rm -rf build/ && make html;' diff --git a/spdx-scanner/.gitignore b/spdx-scanner/.gitignore deleted file mode 100644 index 51e42c2000..0000000000 --- a/spdx-scanner/.gitignore +++ /dev/null @@ -1 +0,0 @@ -augur_sbom_config.json diff --git a/spdx-scanner/README.md b/spdx-scanner/README.md deleted file mode 100644 index 2322464c67..0000000000 --- a/spdx-scanner/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# augur_sbom_scanner -This is a temporary place for a scanner to be used with augur_sbom diff --git a/spdx-scanner/ex-raw.txt b/spdx-scanner/ex-raw.txt deleted file mode 100644 index 0d3baec251..0000000000 --- a/spdx-scanner/ex-raw.txt +++ /dev/null @@ -1,3173 +0,0 @@ -postgresql -##------------------------------------------------------ -## SPDX Document Generated by augur_sbom -##------------------------------------------------------ - - -##------------------------- -## Document Information -##------------------------- - -DataLicense: CC0-1.0 -SPDXID: SPDXRef-DOCUMENT -DocumentNamespace: sqlite:////home/sean/.config/dosocs2/dosocs2.sqlite3/fineract-cn-anubis-d2ee6ae0-44d6-40ec-a62b-df24c68047b7 -DocumentName: fineract-cn-anubis -DocumentComment: -LicenseListVersion: 2.2 - - -##------------------------- -## Creation Information -##------------------------- - -Creator: Tool: dosocs2-0.16.1 -Created: 2019-10-31T13:19:53Z -CreatorComment: - - -##------------------------- -## Package Information -##------------------------- - -PackageName: fineract-cn-anubis -SPDXID: SPDXRef-package-fineract_cn_anubis-41ee-95796598 -PackageFileName: fineract-cn-anubis -PackageDownloadLocation: /home/sean/git-repos/24/github.com/apache/fineract-cn-anubis -PackageVerificationCode: 41ee61e86de9c4bc80169d20648a3999b2c63b84 -PackageHomePage: NOASSERTION -PackageLicenseConcluded: NOASSERTION -PackageLicenseDeclared: NOASSERTION -PackageLicenseInfoFromFiles: Apache-2.0 -PackageCopyrightText: NOASSERTION - -##-------------------------- -## File Information -##-------------------------- - - -## --------------- File --------------- -FileName: ./.git/FETCH_HEAD -SPDXID: SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0 -FileType: OTHER -FileChecksum: SHA256: 41eb045aa561d75cdf4c27897f9575300ccac00d9c973b86867b511aae0f1a00 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/HEAD -SPDXID: SPDXRef-file-HEAD-8dd7-3509f093 -FileType: OTHER -FileChecksum: SHA256: 8dd7e69cf77bff3e6717335270c85d60f7aee7f9e917566d94e0afd8c9d31317 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-HEAD-8dd7-3509f093 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-HEAD-8dd7-3509f093 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/ORIG_HEAD -SPDXID: SPDXRef-file-ORIG_HEAD-9746-9a92d77a -FileType: OTHER -FileChecksum: SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ORIG_HEAD-9746-9a92d77a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ORIG_HEAD-9746-9a92d77a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/config -SPDXID: SPDXRef-file-config-4505-b39636df -FileType: OTHER -FileChecksum: SHA256: 4505a690075315f0d71daa5d998c9aaba9560dbd716c6245be9b9efd5c38e9f8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-config-4505-b39636df DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-config-4505-b39636df CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/description -SPDXID: SPDXRef-file-description-85ab-efe80638 -FileType: OTHER -FileChecksum: SHA256: 85ab6c163d43a17ea9cf7788308bca1466f1b0a8d1cc92e26e9bf63da4062aee -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-description-85ab-efe80638 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-description-85ab-efe80638 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/applypatch-msg.sample -SPDXID: SPDXRef-file-applypatch_msg_sampl-0223-650f8e13 -FileType: SOURCE -FileChecksum: SHA256: 0223497a0b8b033aa58a3a521b8629869386cf7ab0e2f101963d328aa62193f7 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-applypatch_msg_sampl-0223-650f8e13 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-applypatch_msg_sampl-0223-650f8e13 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/commit-msg.sample -SPDXID: SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf -FileType: SOURCE -FileChecksum: SHA256: 1f74d5e9292979b573ebd59741d46cb93ff391acdd083d340b94370753d92437 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/fsmonitor-watchman.sample -SPDXID: SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b -FileType: SOURCE -FileChecksum: SHA256: 7f9cacf1f7c8f791abfaa76171b951a55a9a2a11f1390b43cbc83995b4a91b33 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/post-update.sample -SPDXID: SPDXRef-file-post_update_sample-8176-1e615adf -FileType: SOURCE -FileChecksum: SHA256: 81765af2daef323061dcbc5e61fc16481cb74b3bac9ad8a174b186523586f6c5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-post_update_sample-8176-1e615adf DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-post_update_sample-8176-1e615adf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/pre-applypatch.sample -SPDXID: SPDXRef-file-pre_applypatch_sampl-e15c-cf090967 -FileType: SOURCE -FileChecksum: SHA256: e15c5b469ea3e0a695bea6f2c82bcf8e62821074939ddd85b77e0007ff165475 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pre_applypatch_sampl-e15c-cf090967 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pre_applypatch_sampl-e15c-cf090967 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/pre-commit.sample -SPDXID: SPDXRef-file-pre_commit_sample-d6d1-283147e8 -FileType: SOURCE -FileChecksum: SHA256: d6d114e507a3295ff3a2e214611c2f5c0d13eaf0ed53f595ba02e4cc714fca18 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pre_commit_sample-d6d1-283147e8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pre_commit_sample-d6d1-283147e8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/pre-push.sample -SPDXID: SPDXRef-file-pre_push_sample-4b11-ae67edf8 -FileType: SOURCE -FileChecksum: SHA256: 4b1119e1e13a212571976f4aee77847cdbd40978546d6273a557e238981a40d1 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pre_push_sample-4b11-ae67edf8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pre_push_sample-4b11-ae67edf8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/pre-rebase.sample -SPDXID: SPDXRef-file-pre_rebase_sample-4feb-76d91af5 -FileType: SOURCE -FileChecksum: SHA256: 4febce867790052338076f4e66cc47efb14879d18097d1d61c8261859eaaa7b3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pre_rebase_sample-4feb-76d91af5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pre_rebase_sample-4feb-76d91af5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/pre-receive.sample -SPDXID: SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a -FileType: SOURCE -FileChecksum: SHA256: a4c3d2b9c7bb3fd8d1441c31bd4ee71a595d66b44fcf49ddb310252320169989 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/prepare-commit-msg.sample -SPDXID: SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a -FileType: SOURCE -FileChecksum: SHA256: e9ddcaa4189fddd25ed97fc8c789eca7b6ca16390b2392ae3276f0c8e1aa4619 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/hooks/update.sample -SPDXID: SPDXRef-file-update_sample-751c-f24d4a8e -FileType: SOURCE -FileChecksum: SHA256: 751c037320024ec2ee2757f3ffae0b10ad2c946367684e7059d4dc97eac7e431 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-update_sample-751c-f24d4a8e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-update_sample-751c-f24d4a8e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/index -SPDXID: SPDXRef-file-index-d8b7-8c6d7613 -FileType: OTHER -FileChecksum: SHA256: d8b785001c52f02516edb8b025467352e2aae2acfff86f15f2eee0900434d53a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-index-d8b7-8c6d7613 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-index-d8b7-8c6d7613 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/info/exclude -SPDXID: SPDXRef-file-exclude-6671-2366dad5 -FileType: OTHER -FileChecksum: SHA256: 6671fe83b7a07c8932ee89164d1f2793b2318058eb8b98dc5c06ee0a5a3b0ec1 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-exclude-6671-2366dad5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-exclude-6671-2366dad5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/logs/HEAD -SPDXID: SPDXRef-file-HEAD-8d9c-eecd15bf -FileType: OTHER -FileChecksum: SHA256: 8d9cd532c3519a015533142b14ac2996cadfbbe4f1dc97fe81e7e59f02281cd6 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-HEAD-8d9c-eecd15bf DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-HEAD-8d9c-eecd15bf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/logs/refs/heads/develop -SPDXID: SPDXRef-file-develop-8d9c-dbcd3914 -FileType: OTHER -FileChecksum: SHA256: 8d9cd532c3519a015533142b14ac2996cadfbbe4f1dc97fe81e7e59f02281cd6 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-develop-8d9c-dbcd3914 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-develop-8d9c-dbcd3914 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/logs/refs/remotes/origin/HEAD -SPDXID: SPDXRef-file-HEAD-bde0-fe304737 -FileType: OTHER -FileChecksum: SHA256: bde07a2e0c6b63717d585ca7bf43a2d52f58255bf0790497964e201460fc32a3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-HEAD-bde0-fe304737 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-HEAD-bde0-fe304737 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/logs/refs/remotes/origin/develop -SPDXID: SPDXRef-file-develop-179c-283dcc1b -FileType: OTHER -FileChecksum: SHA256: 179cee2b83862a6fab849713fa5d4f95ee4861af2b6a7f90ddddcb51e9b5dc00 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-develop-179c-283dcc1b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-develop-179c-283dcc1b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/0f/9b2a6c89c5bdb7e04f1152834cdc0406482a8a -SPDXID: SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff -FileType: OTHER -FileChecksum: SHA256: 3c876c77ab8874f2826b1f73296500a5ae138bad47f6881727fbab1c86dc038a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/18/dfd1f048c6234e6ed45ce383550d5364f37534 -SPDXID: SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264 -FileType: OTHER -FileChecksum: SHA256: a7d3757788bbfcb870f97df76c9c5f378a3209b70b94dff65f59121d00c0ffe5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/1c/bfa59973528844c15f336f49a085b46a4bf70a -SPDXID: SPDXRef-file-bfa59973528844c15f33-8077-fe76a541 -FileType: OTHER -FileChecksum: SHA256: 8077fa7f5fcc76589b9b3622942f641757e2f2fa553507b52323e49550d8d874 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-bfa59973528844c15f33-8077-fe76a541 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-bfa59973528844c15f33-8077-fe76a541 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/23/9890249b035ff66203c8acbb6a06f203b4eb44 -SPDXID: SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e -FileType: OTHER -FileChecksum: SHA256: f622fcede7d89873590caf399c9c40fa5afafeb9abcd31a25dc68f0cc2e29bf1 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/25/227ca1f76895519f8cd68700092e794234f986 -SPDXID: SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93 -FileType: OTHER -FileChecksum: SHA256: 60861a2620abbcaffcc144e8e17787dbc63a653a8e652ebc276279170d69d209 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/29/0541c738646a3212199241f726c707e47a459c -SPDXID: SPDXRef-file-0541c738646a32121992-0131-a2667281 -FileType: OTHER -FileChecksum: SHA256: 013131755c2eee698c9f8dd7b2e1d170995ab11b78e9537fad75f1aca8283476 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-0541c738646a32121992-0131-a2667281 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-0541c738646a32121992-0131-a2667281 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/31/1e563ba777508c3b5e30848ab6063efbbcbc94 -SPDXID: SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b -FileType: OTHER -FileChecksum: SHA256: c698460cd5b9a9b52bbcc3904c7ebf6b4c5ae45285d92bc5c799b6933486fbec -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/4a/bcb0f0beef93a4edab9b0a2552b507e5ffe2d0 -SPDXID: SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05 -FileType: OTHER -FileChecksum: SHA256: d85e88f577bdb8715571de6151860c8e19b44a897b4a55d4eedad6b212c3260f -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/50/060ed59eadd81a2fb87206aa6cef552b05dd76 -SPDXID: SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21 -FileType: OTHER -FileChecksum: SHA256: 496efc2864219749f33ddb368f4649914c0b51b9f2d83ccde1682af797b28f54 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/5e/18c95217c400d47a55cd2253b5eb753f4b8a75 -SPDXID: SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f -FileType: OTHER -FileChecksum: SHA256: 8ceccd66f953ca5260690be368eab10027904de760f9b47c494bb79e30a6dcef -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/5e/bd4b10a9a3e82841e0ace7f1750a4cb3c3160e -SPDXID: SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52 -FileType: OTHER -FileChecksum: SHA256: 2b9bf3c2de754578df8e762b2ceccc74b8ef26892a8101bc2305bfb840c328f8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/69/47a7d393044565832ecdbfb01c0c6d9e288a85 -SPDXID: SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4 -FileType: OTHER -FileChecksum: SHA256: 03de986fe6437156ed6fbfed18a33db41d10803d95fad7f44796feb77b23af49 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/76/31c31a8ade86e34a4f7e38136eb87b69679df8 -SPDXID: SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37 -FileType: OTHER -FileChecksum: SHA256: 03e672c6182a86f3673c76698743fc25e087e41233309294b7428923cc208a6a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/83/39427a34646dcb8cd575e2706b6e0e078f7719 -SPDXID: SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c -FileType: OTHER -FileChecksum: SHA256: af7b621fcbb46b3c7170b56bebdaff0e5caf4f4ac9672122c0695d29763042d6 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/88/fa96530dc44d7b5cfff6460611d72db44fa6f6 -SPDXID: SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5 -FileType: OTHER -FileChecksum: SHA256: 02556579ab2f570fdb52d7fed17f2aa6357d41a00b850ee6efa918756afcb548 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/94/336fcae912db8a11d55634156fa011f4686124 -SPDXID: SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e -FileType: OTHER -FileChecksum: SHA256: 18b7bcb2a12a758ab72ecd900182b57b0309096d1dd84b972730e42dba3e4ed7 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/ab/8d5951413f5faf2fee430c090972b6528e774c -SPDXID: SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb -FileType: OTHER -FileChecksum: SHA256: 590d5eb616ba60f450aa3c925a5b2ebd1fcec8700b442f01e123e419d96bda0f -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/ac/f43aee0e066f6abb31e6f2cb062e13f8b47abe -SPDXID: SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78 -FileType: OTHER -FileChecksum: SHA256: 83fe0d39f914c0fcd47a7bf2d5a27309d2a692ce309bd40fd97ef5f374526f22 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/b0/ff3e02afa65792a9f22c1c7536ef50b4e422f3 -SPDXID: SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69 -FileType: OTHER -FileChecksum: SHA256: 5d8de20ee8d298c5c816a2be31fdc036f4e48df55293a4cb538eadfdb2d4616e -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/be/d658044c4c693c7a9272a902791337399249a9 -SPDXID: SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1 -FileType: OTHER -FileChecksum: SHA256: 2f02cdb992b0a6fe539a41e0971d0a76e9d8bf7be4b0e0e1511e1d6bab52369d -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/c7/2568e90865b2b712eb20ae6e534ec59c459054 -SPDXID: SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1 -FileType: OTHER -FileChecksum: SHA256: aee629b6851cfe0178a149406597dd17218a2a9b7b4484f683e20dfc144f8108 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/c9/edcf6f8562217cfd625026c789cb0866f552e4 -SPDXID: SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1 -FileType: OTHER -FileChecksum: SHA256: 9a281c61b9b52c86a4f780390643a667b4004b075718753bdc5e2f40fc07d5fe -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/cc/cdd3d517fc5249beaefa600691cf150f2fa3e6 -SPDXID: SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339 -FileType: OTHER -FileChecksum: SHA256: 2491a796bdbd5000d6657a181d2fe1280f556adbfbb5b1d395ffd05ea6bdf2d3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/d5/4330d47ada63d1bfe9e23d9fc9dfd060936ab4 -SPDXID: SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55 -FileType: OTHER -FileChecksum: SHA256: 407a893ab1b50fa821e84f713071cab9c0a4ef44ac7e1e738d852d4785b33237 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/e7/4b247024c5c6b45901adbd54d2543e65c80aaf -SPDXID: SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff -FileType: OTHER -FileChecksum: SHA256: 6b052a66b5e6346733ded2e333c5f398835cba58863d10dff2a4c171060e7cc4 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/e8/e2371767de07b62a77e566709b7244deccf680 -SPDXID: SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634 -FileType: OTHER -FileChecksum: SHA256: ebd710e2fb0c3bcb3532bd3b6d778ab395a2e4d79fa090f282fa3c533346cace -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/ee/b11f778ce6e6fbe0dcca512b4683f24e1ce197 -SPDXID: SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d -FileType: OTHER -FileChecksum: SHA256: 546a7ee7313eeaf199df4c4b1e5e042c706514f187b4fc1cac36ae7695357dfe -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/pack/pack-70b91df528191bc49dc1c3e7602e4c16625e638d.idx -SPDXID: SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39 -FileType: OTHER -FileChecksum: SHA256: c5e2a1c7fb6e03ecfbfa98f6b45d78b14ef5510789695b50dd9772944f8e31c5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/objects/pack/pack-70b91df528191bc49dc1c3e7602e4c16625e638d.pack -SPDXID: SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936 -FileType: OTHER -FileChecksum: SHA256: aaa8cbed964c771a8f43ad6ec95ff462108f091372cd0e9bb8cb591b0784baa4 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/packed-refs -SPDXID: SPDXRef-file-packed_refs-391c-7b0ae16a -FileType: OTHER -FileChecksum: SHA256: 391c9c6e8a5140512e0477e30397485e739de21dcaa984521d5828ca759c67b8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-packed_refs-391c-7b0ae16a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-packed_refs-391c-7b0ae16a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/refs/heads/develop -SPDXID: SPDXRef-file-develop-9746-efaf18b4 -FileType: OTHER -FileChecksum: SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-develop-9746-efaf18b4 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-develop-9746-efaf18b4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/refs/remotes/origin/HEAD -SPDXID: SPDXRef-file-HEAD-bda5-d198df9c -FileType: OTHER -FileChecksum: SHA256: bda5cfbd39e60865d1109488bdc0ef20a99b0a24a91e9a932948d1bd5f9f2e41 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-HEAD-bda5-d198df9c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-HEAD-bda5-d198df9c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.git/refs/remotes/origin/develop -SPDXID: SPDXRef-file-develop-9746-287d86ec -FileType: OTHER -FileChecksum: SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-develop-9746-287d86ec DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-develop-9746-287d86ec CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.gitignore -SPDXID: SPDXRef-file-_gitignore-f185-f2501c25 -FileType: OTHER -FileChecksum: SHA256: f185f5100812d3fc14fd3d978ab122cf30346cc400fe9dff6864937edf7e8d18 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-_gitignore-f185-f2501c25 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-_gitignore-f185-f2501c25 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./.travis.yml -SPDXID: SPDXRef-file-_travis_yml-f26b-49aa582b -FileType: OTHER -FileChecksum: SHA256: f26bede8447cb88445aaa4adc7971e9f11e014c3266b7ed3327011dbcb603598 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-_travis_yml-f26b-49aa582b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-_travis_yml-f26b-49aa582b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./HEADER -SPDXID: SPDXRef-file-HEADER-f2f3-b7d79a87 -FileType: OTHER -FileChecksum: SHA256: f2f3780765d50cb74f35c8538fa1e8c062952e3ebd68ea98aa225cbccb4382f3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-HEADER-f2f3-b7d79a87 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-HEADER-f2f3-b7d79a87 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./LICENSE -SPDXID: SPDXRef-file-LICENSE-b409-f02edb2c -FileType: OTHER -FileChecksum: SHA256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-LICENSE-b409-f02edb2c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-LICENSE-b409-f02edb2c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./NOTICE.txt -SPDXID: SPDXRef-file-NOTICE_txt-1f6f-54796365 -FileType: OTHER -FileChecksum: SHA256: 1f6ffde12dea456419908279ca9b8fe7729ae3a36985ef18d69c4b2340edb1eb -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-NOTICE_txt-1f6f-54796365 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-NOTICE_txt-1f6f-54796365 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./README.md -SPDXID: SPDXRef-file-README_md-021c-6d24c2c7 -FileType: OTHER -FileChecksum: SHA256: 021c78eacbe534bf7aa7c94a4a7f70153d50a86d2f01e5d59bffd79417bc6c75 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-README_md-021c-6d24c2c7 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-README_md-021c-6d24c2c7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/build.gradle -SPDXID: SPDXRef-file-build_gradle-49e1-97cfbd49 -FileType: OTHER -FileChecksum: SHA256: 49e140d37a0b0598fbde64cca2933da7ddc68e8144b4582bd9ddf2ebc27c3cdf -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-build_gradle-49e1-97cfbd49 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-build_gradle-49e1-97cfbd49 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/settings.gradle -SPDXID: SPDXRef-file-settings_gradle-061d-abf48eab -FileType: OTHER -FileChecksum: SHA256: 061d4542596560920de07c6171491c9bc0404b7c1404503a726768bf91ea2687 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-settings_gradle-061d-abf48eab DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-settings_gradle-061d-abf48eab CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/RoleConstants.java -SPDXID: SPDXRef-file-RoleConstants_java-b90a-15b79259 -FileType: OTHER -FileChecksum: SHA256: b90a65611bc6f6a671f943a0c99d97d182f2741f5908b315b4505601d286fe60 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-RoleConstants_java-b90a-15b79259 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-RoleConstants_java-b90a-15b79259 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/TokenConstants.java -SPDXID: SPDXRef-file-TokenConstants_java-4d49-b5462e84 -FileType: OTHER -FileChecksum: SHA256: 4d494405fe33bf57fa27f42b05c6592f50e0f215bd6db2c65ce51be235405fba -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenConstants_java-4d49-b5462e84 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenConstants_java-4d49-b5462e84 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/client/Anubis.java -SPDXID: SPDXRef-file-Anubis_java-eefa-941edce8 -FileType: SOURCE -FileChecksum: SHA256: eefac641d6b5f3feae2129a55e8ec68422e2a4414a743d18ce9216d74428c573 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Anubis_java-eefa-941edce8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Anubis_java-eefa-941edce8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/client/AnubisApiFactory.java -SPDXID: SPDXRef-file-AnubisApiFactory_jav-70db-a57209af -FileType: SOURCE -FileChecksum: SHA256: 70dbdabb7b9c11be938715cb0a6f0d13eccdd57f5d0eeac242d424bae79c7025 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisApiFactory_jav-70db-a57209af DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisApiFactory_jav-70db-a57209af CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/AllowedOperation.java -SPDXID: SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0 -FileType: SOURCE -FileChecksum: SHA256: 9853058597707e98f72bd5de7f487954b1d0c9e83ba631a56d407b967861aec8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/ApplicationSignatureSet.java -SPDXID: SPDXRef-file-ApplicationSignature-bab0-a3d28964 -FileType: SOURCE -FileChecksum: SHA256: bab08075bfcfc66097dc0fa9a409160ac625e193ab34645f9c0fcb64ef8ca8d8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ApplicationSignature-bab0-a3d28964 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ApplicationSignature-bab0-a3d28964 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/PermittableEndpoint.java -SPDXID: SPDXRef-file-PermittableEndpoint_-99d3-52aa6642 -FileType: SOURCE -FileChecksum: SHA256: 99d30eaf70d3ff8e9d2cc4519f61bc7b909005a90570e75d962d3f504376ca08 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-PermittableEndpoint_-99d3-52aa6642 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-PermittableEndpoint_-99d3-52aa6642 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/Signature.java -SPDXID: SPDXRef-file-Signature_java-11ac-fe10a423 -FileType: SOURCE -FileChecksum: SHA256: 11aca00f24483c3728ddc24d920e4dcaf2b8325beb4ec9a779000949462eb0b0 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Signature_java-11ac-fe10a423 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Signature_java-11ac-fe10a423 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/TokenContent.java -SPDXID: SPDXRef-file-TokenContent_java-8f84-b1604a8e -FileType: SOURCE -FileChecksum: SHA256: 8f84b9a00c504cf7820018e7d1e56de2b21e10e0729de0213988a0f952fabfdb -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenContent_java-8f84-b1604a8e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenContent_java-8f84-b1604a8e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/TokenPermission.java -SPDXID: SPDXRef-file-TokenPermission_java-39cb-c1dc5d32 -FileType: SOURCE -FileChecksum: SHA256: 39cb584f90acf8a77e09f5f8c7268cd53eccf2384db5148502b1f9de91933b1a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenPermission_java-39cb-c1dc5d32 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenPermission_java-39cb-c1dc5d32 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/validation/CheckKeyTimestamp.java -SPDXID: SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b -FileType: SOURCE -FileChecksum: SHA256: 3b69bc0c41e009cd242cec2c33fc6fb594e1210770b8dacd5aeda79ce29d74d2 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/validation/ValidKeyTimestamp.java -SPDXID: SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3 -FileType: SOURCE -FileChecksum: SHA256: 08f2d3473c1ecffcaf6520b6996cfb2043680ff1db25dfd50f9f9960d4652ca5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./api/src/test/java/org/apache/fineract/cn/anubis/api/v1/validation/CheckKeyTimestampTest.java -SPDXID: SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b -FileType: SOURCE -FileChecksum: SHA256: d028e6f00cbfc69e33de0badbff998b5c2341faaca0c2c8eef30d4d1fc93da5a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./build.gradle -SPDXID: SPDXRef-file-build_gradle-6ebe-7886854a -FileType: OTHER -FileChecksum: SHA256: 6ebe2c23f074fb509caced5976f4c050a46a976a1eb90ff9883ee4f4206c7316 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-build_gradle-6ebe-7886854a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-build_gradle-6ebe-7886854a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/build.gradle -SPDXID: SPDXRef-file-build_gradle-57f2-4b69b077 -FileType: OTHER -FileChecksum: SHA256: 57f2af867f0f47e79102309173c6d7e2c4c04d449abc9759f9edd04ee2347c1a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-build_gradle-57f2-4b69b077 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-build_gradle-57f2-4b69b077 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/settings.gradle -SPDXID: SPDXRef-file-settings_gradle-2308-4f3deade -FileType: OTHER -FileChecksum: SHA256: 2308c47c3321338cefda11d13c96a2a2e4be4c131f1c13bc947d9188d6fa9748 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-settings_gradle-2308-4f3deade DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-settings_gradle-2308-4f3deade CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractNoInitializeTest.java -SPDXID: SPDXRef-file-AbstractNoInitialize-5407-b73cf653 -FileType: SOURCE -FileChecksum: SHA256: 54078f079672a631c545041fa676ca7d45c0383f9b7a4fa7803f21f02211aed1 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AbstractNoInitialize-5407-b73cf653 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AbstractNoInitialize-5407-b73cf653 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractNoKeyStorageTest.java -SPDXID: SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73 -FileType: SOURCE -FileChecksum: SHA256: 73a21f30b88c4cc0010da2f477a5ab9fec9016e1a4edc75748bbd03f36e9dcd4 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractSimpleTest.java -SPDXID: SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd -FileType: SOURCE -FileChecksum: SHA256: 79003a291f89ea67515aa219f2a13c53727fb78af2278f80a76bc4e4a1ed1c60 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitialize.java -SPDXID: SPDXRef-file-TestAnubisInitialize-2af4-8c707c18 -FileType: SOURCE -FileChecksum: SHA256: 2af4ddae5500fe13ec1ec2e620cce3f6a5c79cfccc3caaa09ad4c1693e6585f8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestAnubisInitialize-2af4-8c707c18 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestAnubisInitialize-2af4-8c707c18 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitializeWithSpecialTenantSignatureRepository.java -SPDXID: SPDXRef-file-TestAnubisInitialize-0121-cec2dd00 -FileType: SOURCE -FileChecksum: SHA256: 012179d68bcb80a11ef40f931489349dd97f127df9210ac14bc827fad9ab4c67 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestAnubisInitialize-0121-cec2dd00 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestAnubisInitialize-0121-cec2dd00 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitializeWithoutServiceBacking.java -SPDXID: SPDXRef-file-TestAnubisInitialize-7720-c38af656 -FileType: SOURCE -FileChecksum: SHA256: 772027de0613b0556aff7ac5e014fa0c6b9684e2c1bfdf0594e8b8a1de61e8e7 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestAnubisInitialize-7720-c38af656 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestAnubisInitialize-7720-c38af656 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisKeyRotation.java -SPDXID: SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12 -FileType: SOURCE -FileChecksum: SHA256: 6b204ab3c9d3e6bb75bb4284ddcc36f1e0e94f7b0c7b6ce3f3047f17178d8bb4 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisTenantPermissions.java -SPDXID: SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b -FileType: SOURCE -FileChecksum: SHA256: 7c01981890e4a991f16c881ef2ac6a73555e4b1a0e3405697d084483d8a83cbf -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestPermittableEndpoints.java -SPDXID: SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c -FileType: SOURCE -FileChecksum: SHA256: f6262e223e01509023bea3e18ddc44b969b6262ba8f2e1d0855722398bfe7280 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/TestSystemToken.java -SPDXID: SPDXRef-file-TestSystemToken_java-54e4-761dc95d -FileType: SOURCE -FileChecksum: SHA256: 54e4f6d318c42835d81b436e9143fe44b8c83357818d51ef51e0eb0271d04342 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestSystemToken_java-54e4-761dc95d DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestSystemToken_java-54e4-761dc95d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/Example.java -SPDXID: SPDXRef-file-Example_java-7046-7379a00e -FileType: SOURCE -FileChecksum: SHA256: 7046595f66772a98efa7cca2544b9eb1f1cf9bd5593158a06f4b44108c6c6d36 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Example_java-7046-7379a00e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Example_java-7046-7379a00e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/ExampleConfiguration.java -SPDXID: SPDXRef-file-ExampleConfiguration-ca75-d71d27f5 -FileType: SOURCE -FileChecksum: SHA256: ca753e6fb83010966149c436c824ff8894c2f310e5f3c5765f842550ce32c3ed -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleConfiguration-ca75-d71d27f5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleConfiguration-ca75-d71d27f5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/ExampleRestController.java -SPDXID: SPDXRef-file-ExampleRestControlle-d792-46b730b1 -FileType: SOURCE -FileChecksum: SHA256: d792425cfbc06ee7bdef2f0caa12884afec2d2d7d0c52607e079f72909ca95ec -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleRestControlle-d792-46b730b1 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleRestControlle-d792-46b730b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/UserContext.java -SPDXID: SPDXRef-file-UserContext_java-aeb5-4d4141da -FileType: SOURCE -FileChecksum: SHA256: aeb59dd4dc8ef15e469293674c43e828fd301e3b91c338bf51267580021527a0 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-UserContext_java-aeb5-4d4141da DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-UserContext_java-aeb5-4d4141da CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/Example.java -SPDXID: SPDXRef-file-Example_java-10dd-522b4703 -FileType: SOURCE -FileChecksum: SHA256: 10dd329c240e075a231a48412b19590961dc8eb3227542ebb8b2eefc0ed8dcfc -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Example_java-10dd-522b4703 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Example_java-10dd-522b4703 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/ExampleConfiguration.java -SPDXID: SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4 -FileType: SOURCE -FileChecksum: SHA256: fcc3316af40eb3c1f9fbf77394a9245aacca81657051187aa31e71855e6c0f80 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/ExampleRestController.java -SPDXID: SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f -FileType: SOURCE -FileChecksum: SHA256: e99b9ac8aff95aa9c80088dc915a5e33bb478c6040e27ce2db98b35ef8cfaf27 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/SpecialTenantSignatureRepository.java -SPDXID: SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9 -FileType: SOURCE -FileChecksum: SHA256: df363257088f6cc69c7a43fcbd09b0128262df715911862cfa2be990d196b9d5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/Example.java -SPDXID: SPDXRef-file-Example_java-3049-d95febd6 -FileType: SOURCE -FileChecksum: SHA256: 30490396ab15c4f03bee5d27c4f1c8bb27649aa9bab553547c269b512a319316 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Example_java-3049-d95febd6 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Example_java-3049-d95febd6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/ExampleConfiguration.java -SPDXID: SPDXRef-file-ExampleConfiguration-7608-96a4eb71 -FileType: SOURCE -FileChecksum: SHA256: 7608fac76e7d57e18265e71f63d5b053bf867a5097d76ca3fed1c29796b11cdd -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleConfiguration-7608-96a4eb71 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleConfiguration-7608-96a4eb71 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/ExampleRestController.java -SPDXID: SPDXRef-file-ExampleRestControlle-1b88-25a80fea -FileType: SOURCE -FileChecksum: SHA256: 1b88dab1f28ff8349f74b9e6b1bd74dca5a723211a6835c31a2ecd9beac15389 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ExampleRestControlle-1b88-25a80fea DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ExampleRestControlle-1b88-25a80fea CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/Metrics.java -SPDXID: SPDXRef-file-Metrics_java-4596-4fa8e6de -FileType: OTHER -FileChecksum: SHA256: 45966566b7a6e38a52ea41847567906161762fecc1732337616f89e50e9e76f8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Metrics_java-4596-4fa8e6de DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Metrics_java-4596-4fa8e6de CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/MetricsFeignClient.java -SPDXID: SPDXRef-file-MetricsFeignClient_j-cc28-f30470de -FileType: SOURCE -FileChecksum: SHA256: cc28fc3ac9f268ebeaaa439242401399a8ff623556392bcc3ce3721485cf06f0 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-MetricsFeignClient_j-cc28-f30470de DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-MetricsFeignClient_j-cc28-f30470de CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/SuiteTestEnvironment.java -SPDXID: SPDXRef-file-SuiteTestEnvironment-0145-a6761987 -FileType: SOURCE -FileChecksum: SHA256: 0145f76f7e02b508a7ca7f0e4460193f26ed754fe9913e7fc884f265ae706aa8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SuiteTestEnvironment-0145-a6761987 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SuiteTestEnvironment-0145-a6761987 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteNoInitialize.java -SPDXID: SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219 -FileType: SOURCE -FileChecksum: SHA256: d82af3d6e31f7fdff3dddba2c2b176cf9d719101b9d697871d7b2e324d4a2d98 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteNoKeyStorage.java -SPDXID: SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6 -FileType: SOURCE -FileChecksum: SHA256: fea4bfebcdcc78577532565f751cebadf9ecd679ed1bc0ebbf2ddb17953db9a7 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteSimple.java -SPDXID: SPDXRef-file-TestSuiteSimple_java-434c-00329be8 -FileType: SOURCE -FileChecksum: SHA256: 434c0ee21520e0481e6dfe70dc7a1c47e7a1460e52592ed469e11ee3e09fe02f -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TestSuiteSimple_java-434c-00329be8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TestSuiteSimple_java-434c-00329be8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./component-test/src/main/resources/logback.xml -SPDXID: SPDXRef-file-logback_xml-a6b5-4169e57a -FileType: OTHER -FileChecksum: SHA256: a6b50980fa974a62a7b6877ff4febc66e20089e1aad060b11e185e67d3d0a09d -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-logback_xml-a6b5-4169e57a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-logback_xml-a6b5-4169e57a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./gradle/wrapper/gradle-wrapper.jar -SPDXID: SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0 -FileType: ARCHIVE -FileChecksum: SHA256: 660ab018b8e319e9ae779fdb1b7ac47d0321bde953bf0eb4545f14952cfdcaa3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./gradle/wrapper/gradle-wrapper.properties -SPDXID: SPDXRef-file-gradle_wrapper_prope-0419-6031525e -FileType: OTHER -FileChecksum: SHA256: 0419361b32d7902c6c720e5f4fd8f58b1b5a7ad3899c846d8618397397afe3f8 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-gradle_wrapper_prope-0419-6031525e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-gradle_wrapper_prope-0419-6031525e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./gradlew -SPDXID: SPDXRef-file-gradlew-8c4c-ff6b12aa -FileType: SOURCE -FileChecksum: SHA256: 8c4c04dd98db1f00d49456dd162418a39312c5cb13d6865d783deb483bd1ed22 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-gradlew-8c4c-ff6b12aa DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-gradlew-8c4c-ff6b12aa CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./gradlew.bat -SPDXID: SPDXRef-file-gradlew_bat-0008-4862acca -FileType: OTHER -FileChecksum: SHA256: 0008d785920c9ff5cab17403e0270ccc7ceee8e169b6d67a82d96a5475fec5c9 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: NOASSERTION -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-gradlew_bat-0008-4862acca DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-gradlew_bat-0008-4862acca CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/build.gradle -SPDXID: SPDXRef-file-build_gradle-1c0a-4811bb43 -FileType: OTHER -FileChecksum: SHA256: 1c0aef9ec07147c6b24bec031de557bc5d97a2be0b839c571ace312041d505d6 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-build_gradle-1c0a-4811bb43 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-build_gradle-1c0a-4811bb43 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/settings.gradle -SPDXID: SPDXRef-file-settings_gradle-5399-268632aa -FileType: OTHER -FileChecksum: SHA256: 5399ab5bbddda4b7fc2d0a0d930b366620502ee2f3f865fd085126cd2b43b9b2 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-settings_gradle-5399-268632aa DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-settings_gradle-5399-268632aa CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/annotation/AcceptedTokenType.java -SPDXID: SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5 -FileType: OTHER -FileChecksum: SHA256: d97687d3584f76c0cd9cc221faad37e8bf89026c181087927090e8160daab106 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/annotation/Permittable.java -SPDXID: SPDXRef-file-Permittable_java-f92d-00f4eeb8 -FileType: SOURCE -FileChecksum: SHA256: f92df5915a4108431ae02d1f1e7b35ad2f4ae505c650200031d5849a9fb98d16 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Permittable_java-f92d-00f4eeb8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Permittable_java-f92d-00f4eeb8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/annotation/Permittables.java -SPDXID: SPDXRef-file-Permittables_java-5bb6-85929b53 -FileType: SOURCE -FileChecksum: SHA256: 5bb6daf7c0ce8908b7f62211dacc661cd9e8c742f5e47838de01cd2f0d1f9e8a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-Permittables_java-5bb6-85929b53 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-Permittables_java-5bb6-85929b53 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisConfiguration.java -SPDXID: SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1 -FileType: SOURCE -FileChecksum: SHA256: c5f11855bcad3d410cc791ce14718da2bf1e577ecb4d35fecf6de8b3e9d91311 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisConstants.java -SPDXID: SPDXRef-file-AnubisConstants_java-3477-82f77f2c -FileType: OTHER -FileChecksum: SHA256: 347786b22348989a69a7bde48146288a75c532951d48714c3d7d5ac1c2193bd3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisConstants_java-3477-82f77f2c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisConstants_java-3477-82f77f2c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisImportSelector.java -SPDXID: SPDXRef-file-AnubisImportSelector-00da-bd438313 -FileType: SOURCE -FileChecksum: SHA256: 00dab16f62a04adc93b6270477260c0ecdf3b963f873cca3a304a214b35c3d49 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisImportSelector-00da-bd438313 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisImportSelector-00da-bd438313 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisProperties.java -SPDXID: SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac -FileType: SOURCE -FileChecksum: SHA256: 92c4843fd5ddfab56a4598ca7e8ff9330a59d461d588f75cf1a31c9eddd0c063 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisSecurityConfigurerAdapter.java -SPDXID: SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810 -FileType: SOURCE -FileChecksum: SHA256: 0d69262d6cbedc83044367c6d692002559824a2b7a4203090ac89e95f8b8feac -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/EnableAnubis.java -SPDXID: SPDXRef-file-EnableAnubis_java-6913-9438c97b -FileType: SOURCE -FileChecksum: SHA256: 6913441d9f8f1d289bbef463ea51056cfea2e2f46b799d9dd31a4522d2406b32 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-EnableAnubis_java-6913-9438c97b DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-EnableAnubis_java-6913-9438c97b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/config/TenantSignatureRepository.java -SPDXID: SPDXRef-file-TenantSignatureRepos-6c67-c15729ad -FileType: SOURCE -FileChecksum: SHA256: 6c67e4a1292ae469bc55ee89cb153766f1120e3a0a06fd31ffb6210f68468bbc -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantSignatureRepos-6c67-c15729ad DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantSignatureRepos-6c67-c15729ad CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/controller/EmptyInitializeResourcesRestController.java -SPDXID: SPDXRef-file-EmptyInitializeResou-cf04-10175772 -FileType: SOURCE -FileChecksum: SHA256: cf041c5a65980ca521011c21afc0ad55ba1fd45642bcfb8f90a52a0007aae6d9 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-EmptyInitializeResou-cf04-10175772 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-EmptyInitializeResou-cf04-10175772 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/controller/PermittableRestController.java -SPDXID: SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d -FileType: SOURCE -FileChecksum: SHA256: bbc592829c0c6b16791e1cb810258182df5d8653ab5797ff0d9da38266fb7678 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/controller/SignatureCreatorRestController.java -SPDXID: SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6 -FileType: SOURCE -FileChecksum: SHA256: f2a68ec6ab2d68a8efb0343fbc9f84f01bcd0e8dbad29aafc0d469d840793e93 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/controller/SignatureRestController.java -SPDXID: SPDXRef-file-SignatureRestControl-2242-c2dfa47a -FileType: SOURCE -FileChecksum: SHA256: 22420db88f6c43b14bceedb9f308756546068e2c5d5fd889d7450544e493011e -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SignatureRestControl-2242-c2dfa47a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SignatureRestControl-2242-c2dfa47a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/filter/IsisAuthenticatedProcessingFilter.java -SPDXID: SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da -FileType: SOURCE -FileChecksum: SHA256: ac4c252fc1bdd1ebe073c3aec813a81a497ed47d27f40fb78fed7d8458f83777 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/filter/UserContextFilter.java -SPDXID: SPDXRef-file-UserContextFilter_ja-3470-5542cb26 -FileType: SOURCE -FileChecksum: SHA256: 3470efb103b322d23e0f3bb3be1ae6290741a013e632faa758bc89ed094d5f58 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-UserContextFilter_ja-3470-5542cb26 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-UserContextFilter_ja-3470-5542cb26 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/provider/InvalidKeyTimestampException.java -SPDXID: SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd -FileType: OTHER -FileChecksum: SHA256: 6c8b2e8e6ad4b49706556fa14df20f534819b7ffaeacaabc38a2f87694e0076a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/provider/SystemRsaKeyProvider.java -SPDXID: SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8 -FileType: SOURCE -FileChecksum: SHA256: 187fb74b0944e2dfec5f72f1c52025dfc3c99d97a13fc66eebd8dc687061ec72 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/provider/TenantRsaKeyProvider.java -SPDXID: SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c -FileType: SOURCE -FileChecksum: SHA256: 8ca86bd60fef56b2dc4f496e40e12700fc4a913339fc75adac2945a5f79d2451 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/repository/TenantAuthorizationDataRepository.java -SPDXID: SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36 -FileType: SOURCE -FileChecksum: SHA256: 07d47595a0159da5ed788b5c0f2a1d684ae039e20f2455445c211cff2c675071 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/AmitAuthenticationException.java -SPDXID: SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4 -FileType: SOURCE -FileChecksum: SHA256: be679afeee8075033ae6e21d3697cb4e48004fa871bc92dec2d3ba862bf8f95d -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/AnubisAuthentication.java -SPDXID: SPDXRef-file-AnubisAuthentication-ff86-573396e6 -FileType: SOURCE -FileChecksum: SHA256: ff861d632824d7cc2aeaf0a344a13a015525c64d8ba9b2d5e99d00742adddb90 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisAuthentication-ff86-573396e6 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisAuthentication-ff86-573396e6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/AnubisPrincipal.java -SPDXID: SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2 -FileType: SOURCE -FileChecksum: SHA256: 38fd530dcb1ad609715ff522cbcf691bad6df31b71c8b2f93541ceef9592743a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/ApplicationPermission.java -SPDXID: SPDXRef-file-ApplicationPermissio-793a-6121eea7 -FileType: SOURCE -FileChecksum: SHA256: 793a4152c1e64beec6a815d8ca42092767572579f486af41ec7bbd07f19197ec -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ApplicationPermissio-793a-6121eea7 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ApplicationPermissio-793a-6121eea7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/GuestAuthenticator.java -SPDXID: SPDXRef-file-GuestAuthenticator_j-8952-55032a59 -FileType: SOURCE -FileChecksum: SHA256: 8952cb1a57465a613850b17023e4c90cb9356a52d7fb461ed72e0821b9d13e30 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-GuestAuthenticator_j-8952-55032a59 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-GuestAuthenticator_j-8952-55032a59 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/IsisAuthenticatedAuthenticationProvider.java -SPDXID: SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf -FileType: SOURCE -FileChecksum: SHA256: 91b347526f5f35825a11eea6b62d22d0b7b72f4864663291b3c8cd5c6adcdbcd -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/SystemAuthenticator.java -SPDXID: SPDXRef-file-SystemAuthenticator_-1971-93a0d900 -FileType: SOURCE -FileChecksum: SHA256: 1971c0882913c21e3796fc97fabc65a64a8048a2e7db56ba84e72d2cd4d3f1a5 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SystemAuthenticator_-1971-93a0d900 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SystemAuthenticator_-1971-93a0d900 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/TenantAuthenticator.java -SPDXID: SPDXRef-file-TenantAuthenticator_-831f-be7e2c69 -FileType: SOURCE -FileChecksum: SHA256: 831f707c5e02188499e657d97ad5f685ef2f697d38796cc5c4604398cbe2663b -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantAuthenticator_-831f-be7e2c69 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantAuthenticator_-831f-be7e2c69 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/TokenInfo.java -SPDXID: SPDXRef-file-TokenInfo_java-fc2a-94074cc8 -FileType: SOURCE -FileChecksum: SHA256: fc2ae5b055d2b91580dfffd9c62c4bda75765af5e2a394966f9c4eb738e352cf -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenInfo_java-fc2a-94074cc8 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenInfo_java-fc2a-94074cc8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/security/UrlPermissionChecker.java -SPDXID: SPDXRef-file-UrlPermissionChecker-37e9-f80973f9 -FileType: SOURCE -FileChecksum: SHA256: 37e948a2254c3c7b7760bc3cf95171370b8ffacb18493954da656c53816d1190 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-UrlPermissionChecker-37e9-f80973f9 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-UrlPermissionChecker-37e9-f80973f9 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/service/PermissionSegmentMatcher.java -SPDXID: SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e -FileType: SOURCE -FileChecksum: SHA256: 9dfadc62b8a82aa5f79d30b6d34789895708cda0163d8cc92c5cd7d4ccd22f4c -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/service/PermittableService.java -SPDXID: SPDXRef-file-PermittableService_j-6cbb-f8a99237 -FileType: SOURCE -FileChecksum: SHA256: 6cbb58e777a32e89574b82329c5aa80d8eb9e46bec1cc62a6f70b83d82e4e8e9 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-PermittableService_j-6cbb-f8a99237 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-PermittableService_j-6cbb-f8a99237 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/SystemAccessTokenSerializer.java -SPDXID: SPDXRef-file-SystemAccessTokenSer-cafc-5080001a -FileType: SOURCE -FileChecksum: SHA256: cafc12f96362a3973e87824670602030bd979ad7ccd73cb632c0d1714e88e018 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SystemAccessTokenSer-cafc-5080001a DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SystemAccessTokenSer-cafc-5080001a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantAccessTokenSerializer.java -SPDXID: SPDXRef-file-TenantAccessTokenSer-ad21-c6845356 -FileType: SOURCE -FileChecksum: SHA256: ad211eea785dd9713558ec536852a68a87c859b89ddb8cdb89181846573c5dd6 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantAccessTokenSer-ad21-c6845356 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantAccessTokenSer-ad21-c6845356 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantApplicationRsaKeyProvider.java -SPDXID: SPDXRef-file-TenantApplicationRsa-47a9-09ef0560 -FileType: SOURCE -FileChecksum: SHA256: 47a9cfc7d01c7353e3582028488d3acff654d7b3841646fd52e812eb6f2d972a -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantApplicationRsa-47a9-09ef0560 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantApplicationRsa-47a9-09ef0560 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantRefreshTokenSerializer.java -SPDXID: SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7 -FileType: SOURCE -FileChecksum: SHA256: 7fccff33ebe5f191ec1014671bc378b495f2322debe0ac2c16b4bcee33fc6dca -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenDeserializationResult.java -SPDXID: SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c -FileType: SOURCE -FileChecksum: SHA256: ccb5181e316cd6105640eec64ca81150f642f33b39af9613eff747cd0d61f86c -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenSerializationResult.java -SPDXID: SPDXRef-file-TokenSerializationRe-d52e-273d6650 -FileType: SOURCE -FileChecksum: SHA256: d52ea1b30dd84202a7dd14cba28dbd227dce7a8c65267592fe09afe2efbe8a5d -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenSerializationRe-d52e-273d6650 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenSerializationRe-d52e-273d6650 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenType.java -SPDXID: SPDXRef-file-TokenType_java-a9b2-7fe86cab -FileType: SOURCE -FileChecksum: SHA256: a9b2d5aafd38cc04d792077f7a466a1dac7b236a07032f512251283003cb7d02 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenType_java-a9b2-7fe86cab DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenType_java-a9b2-7fe86cab CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/test/java/org/apache/fineract/cn/anubis/security/ApplicationPermissionTest.java -SPDXID: SPDXRef-file-ApplicationPermissio-7555-44e2e6c5 -FileType: SOURCE -FileChecksum: SHA256: 7555b8fab2c6e65f5e3e1454510db7f84f792a662768314eade270efe7698a6f -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-ApplicationPermissio-7555-44e2e6c5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-ApplicationPermissio-7555-44e2e6c5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/test/java/org/apache/fineract/cn/anubis/token/SystemAccessTokenSerializerTest.java -SPDXID: SPDXRef-file-SystemAccessTokenSer-1202-01890c06 -FileType: SOURCE -FileChecksum: SHA256: 120249d6b197e65563696923f0720aab74543c50d9e661e1789cd65aeafc3227 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SystemAccessTokenSer-1202-01890c06 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SystemAccessTokenSer-1202-01890c06 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/test/java/org/apache/fineract/cn/anubis/token/TenantAccessTokenSerializerTest.java -SPDXID: SPDXRef-file-TenantAccessTokenSer-2516-1f97677e -FileType: SOURCE -FileChecksum: SHA256: 2516fed0f7888dbcd04eaafb162a3d00094f2055384dca38850356bfb33a2efe -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantAccessTokenSer-2516-1f97677e DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantAccessTokenSer-2516-1f97677e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/test/java/org/apache/fineract/cn/anubis/token/TenantRefreshTokenSerializerTest.java -SPDXID: SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d -FileType: SOURCE -FileChecksum: SHA256: 101898dfcf28e46664ef6573daac321c37f21b71849fce44e5fb52b491d988b0 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./library/src/test/java/org/apache/fineract/cn/anubis/token/TokenTypeTest.java -SPDXID: SPDXRef-file-TokenTypeTest_java-84d9-4a10baec -FileType: SOURCE -FileChecksum: SHA256: 84d9f71061af344f79377f9868c435790a828e0a06f5921df2c1fb3702c47692 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TokenTypeTest_java-84d9-4a10baec DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TokenTypeTest_java-84d9-4a10baec CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./settings.gradle -SPDXID: SPDXRef-file-settings_gradle-7ef2-5591dd84 -FileType: OTHER -FileChecksum: SHA256: 7ef2a613361541b426910e4088c8769c90bb6dd13df4eebaa44b9fb3e072e164 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-settings_gradle-7ef2-5591dd84 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-settings_gradle-7ef2-5591dd84 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./shared.gradle -SPDXID: SPDXRef-file-shared_gradle-b132-604f237f -FileType: OTHER -FileChecksum: SHA256: b1329de8563afdd23c4bbfd43bafa3034690fbabec9d80f26d786653c1cc6fef -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-shared_gradle-b132-604f237f DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-shared_gradle-b132-604f237f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./test/build.gradle -SPDXID: SPDXRef-file-build_gradle-c025-7530da98 -FileType: OTHER -FileChecksum: SHA256: c02544130e23d17581944402a02b39938928b286e55150aa9bbdf00026bd159d -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-build_gradle-c025-7530da98 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-build_gradle-c025-7530da98 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./test/settings.gradle -SPDXID: SPDXRef-file-settings_gradle-7e17-aaa431d5 -FileType: OTHER -FileChecksum: SHA256: 7e17093510ac13a0fbe1d4f9ea522090af0edc7b6a7f7b0e854d731da6af5424 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-settings_gradle-7e17-aaa431d5 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-settings_gradle-7e17-aaa431d5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./test/src/main/java/org/apache/fineract/cn/anubis/test/v1/SystemSecurityEnvironment.java -SPDXID: SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46 -FileType: SOURCE -FileChecksum: SHA256: b8b48a7ab5020f6acb1a59b01ea0e7d10c79fa6c080ce2821232b4b66f1498e3 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./test/src/main/java/org/apache/fineract/cn/anubis/test/v1/TenantApplicationSecurityEnvironmentTestRule.java -SPDXID: SPDXRef-file-TenantApplicationSec-89b5-91648dda -FileType: SOURCE -FileChecksum: SHA256: 89b5e6272baa68a68ae6a6a53b591f1685c4b7443a0b538d08f28bd60c9f19c7 -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-TenantApplicationSec-89b5-91648dda DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-TenantApplicationSec-89b5-91648dda CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -## --------------- File --------------- -FileName: ./travis.sh -SPDXID: SPDXRef-file-travis_sh-6c25-ae649a94 -FileType: SOURCE -FileChecksum: SHA256: 6c25234b437214136f3efeae46b7bcc408cc0e77fa9b784839ded791b4543e8b -LicenseConcluded: NOASSERTION -LicenseInfoInFile: Apache-2.0 -LicenseComments: -FileCopyrightText: NOASSERTION -FileComment: -FileNotice: -## Relationships -Relationship: SPDXRef-file-travis_sh-6c25-ae649a94 DESCRIBED_BY SPDXRef-DOCUMENT -Relationship: SPDXRef-file-travis_sh-6c25-ae649a94 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598 -##----------------------------- -##Relationship Information -##----------------------------- - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-49e1-97cfbd49 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-061d-abf48eab - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisApiFactory_jav-70db-a57209af - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Anubis_java-eefa-941edce8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationSignature-bab0-a3d28964 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableEndpoint_-99d3-52aa6642 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Signature_java-11ac-fe10a423 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenContent_java-8f84-b1604a8e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenPermission_java-39cb-c1dc5d32 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-RoleConstants_java-b90a-15b79259 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenConstants_java-4d49-b5462e84 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-6ebe-7886854a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-57f2-4b69b077 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-2308-4f3deade - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractNoInitialize-5407-b73cf653 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-ca75-d71d27f5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-7046-7379a00e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-d792-46b730b1 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UserContext_java-aeb5-4d4141da - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-10dd-522b4703 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-7608-96a4eb71 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-3049-d95febd6 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-1b88-25a80fea - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-MetricsFeignClient_j-cc28-f30470de - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Metrics_java-4596-4fa8e6de - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SuiteTestEnvironment-0145-a6761987 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteSimple_java-434c-00329be8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-2af4-8c707c18 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-7720-c38af656 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-0121-cec2dd00 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSystemToken_java-54e4-761dc95d - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-logback_xml-a6b5-4169e57a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-config-4505-b39636df - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-description-85ab-efe80638 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-8dd7-3509f093 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-applypatch_msg_sampl-0223-650f8e13 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-post_update_sample-8176-1e615adf - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_applypatch_sampl-e15c-cf090967 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_commit_sample-d6d1-283147e8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_push_sample-4b11-ae67edf8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_rebase_sample-4feb-76d91af5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-update_sample-751c-f24d4a8e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-_gitignore-f185-f2501c25 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-index-d8b7-8c6d7613 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-exclude-6671-2366dad5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-8d9c-eecd15bf - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-8d9c-dbcd3914 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-179c-283dcc1b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-bde0-fe304737 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bfa59973528844c15f33-8077-fe76a541 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-0541c738646a32121992-0131-a2667281 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ORIG_HEAD-9746-9a92d77a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-packed_refs-391c-7b0ae16a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-9746-efaf18b4 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-9746-287d86ec - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-bda5-d198df9c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradlew-8c4c-ff6b12aa - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradlew_bat-0008-4862acca - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradle_wrapper_prope-0419-6031525e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEADER-f2f3-b7d79a87 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-1c0a-4811bb43 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-5399-268632aa - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Permittable_java-f92d-00f4eeb8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Permittables_java-5bb6-85929b53 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisConstants_java-3477-82f77f2c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisImportSelector-00da-bd438313 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-EnableAnubis_java-6913-9438c97b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantSignatureRepos-6c67-c15729ad - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-EmptyInitializeResou-cf04-10175772 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SignatureRestControl-2242-c2dfa47a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UserContextFilter_ja-3470-5542cb26 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisAuthentication-ff86-573396e6 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationPermissio-793a-6121eea7 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-GuestAuthenticator_j-8952-55032a59 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAuthenticator_-1971-93a0d900 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAuthenticator_-831f-be7e2c69 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenInfo_java-fc2a-94074cc8 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UrlPermissionChecker-37e9-f80973f9 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableService_j-6cbb-f8a99237 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAccessTokenSer-cafc-5080001a - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAccessTokenSer-ad21-c6845356 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantApplicationRsa-47a9-09ef0560 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenSerializationRe-d52e-273d6650 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenType_java-a9b2-7fe86cab - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationPermissio-7555-44e2e6c5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAccessTokenSer-1202-01890c06 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAccessTokenSer-2516-1f97677e - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenTypeTest_java-84d9-4a10baec - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-LICENSE-b409-f02edb2c - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-NOTICE_txt-1f6f-54796365 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-README_md-021c-6d24c2c7 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-7ef2-5591dd84 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-shared_gradle-b132-604f237f - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-c025-7530da98 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-7e17-aaa431d5 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantApplicationSec-89b5-91648dda - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-travis_sh-6c25-ae649a94 - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-_travis_yml-f26b-49aa582b - -## --------------- Relationship --------------- -Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-package-fineract_cn_anubis-41ee-95796598 - - -TotalFiles: 164 -DeclaredLicenseFiles: 102 -PercentTotalLicenseCoverage: 62.20% - diff --git a/spdx-scanner/ex.json b/spdx-scanner/ex.json deleted file mode 100644 index 5a94c81659..0000000000 --- a/spdx-scanner/ex.json +++ /dev/null @@ -1 +0,0 @@ -{"Document Information": {"DataLicense": "CC0-1.0", "SPDXID": "SPDXRef-DOCUMENT", "DocumentNamespace": "sqlite:////home/sean/.config/dosocs2/dosocs2.sqlite3/fineract-cn-anubis-d2ee6ae0-44d6-40ec-a62b-df24c68047b7", "DocumentName": "fineract-cn-anubis", "DocumentComment": "", "LicenseListVersion": " 2.2"}, "Creation Information": {"Creator": "Tool: dosocs2-0.16.1", "Created": "2019-10-31T13:19:53Z", "CreatorComment": ""}, "Package Information": {"PackageName": "fineract-cn-anubis", "SPDXID": "SPDXRef-package-fineract_cn_anubis-41ee-95796598", "PackageFileName": "fineract-cn-anubis", "PackageDownloadLocation": "/home/sean/git-repos/24/github.com/apache/fineract-cn-anubis", "PackageVerificationCode": "41ee61e86de9c4bc80169d20648a3999b2c63b84", "PackageHomePage": "NOASSERTION", "PackageLicenseConcluded": "NOASSERTION", "PackageLicenseDeclared": "NOASSERTION", "PackageLicenseInfoFromFiles": "Apache-2.0", "PackageCopyrightText": "NOASSERTION"}, "File Information": {"File 0": {"FileName": "./.git/FETCH_HEAD", "SPDXID": "SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0", "FileType": "OTHER", "FileChecksum": "SHA256: 41eb045aa561d75cdf4c27897f9575300ccac00d9c973b86867b511aae0f1a00", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 1": {"FileName": "./.git/HEAD", "SPDXID": "SPDXRef-file-HEAD-8dd7-3509f093", "FileType": "OTHER", "FileChecksum": "SHA256: 8dd7e69cf77bff3e6717335270c85d60f7aee7f9e917566d94e0afd8c9d31317", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-HEAD-8dd7-3509f093 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 2": {"FileName": "./.git/ORIG_HEAD", "SPDXID": "SPDXRef-file-ORIG_HEAD-9746-9a92d77a", "FileType": "OTHER", "FileChecksum": "SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ORIG_HEAD-9746-9a92d77a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 3": {"FileName": "./.git/config", "SPDXID": "SPDXRef-file-config-4505-b39636df", "FileType": "OTHER", "FileChecksum": "SHA256: 4505a690075315f0d71daa5d998c9aaba9560dbd716c6245be9b9efd5c38e9f8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-config-4505-b39636df CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 4": {"FileName": "./.git/description", "SPDXID": "SPDXRef-file-description-85ab-efe80638", "FileType": "OTHER", "FileChecksum": "SHA256: 85ab6c163d43a17ea9cf7788308bca1466f1b0a8d1cc92e26e9bf63da4062aee", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-description-85ab-efe80638 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 5": {"FileName": "./.git/hooks/applypatch-msg.sample", "SPDXID": "SPDXRef-file-applypatch_msg_sampl-0223-650f8e13", "FileType": "SOURCE", "FileChecksum": "SHA256: 0223497a0b8b033aa58a3a521b8629869386cf7ab0e2f101963d328aa62193f7", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-applypatch_msg_sampl-0223-650f8e13 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 6": {"FileName": "./.git/hooks/commit-msg.sample", "SPDXID": "SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf", "FileType": "SOURCE", "FileChecksum": "SHA256: 1f74d5e9292979b573ebd59741d46cb93ff391acdd083d340b94370753d92437", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 7": {"FileName": "./.git/hooks/fsmonitor-watchman.sample", "SPDXID": "SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b", "FileType": "SOURCE", "FileChecksum": "SHA256: 7f9cacf1f7c8f791abfaa76171b951a55a9a2a11f1390b43cbc83995b4a91b33", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 8": {"FileName": "./.git/hooks/post-update.sample", "SPDXID": "SPDXRef-file-post_update_sample-8176-1e615adf", "FileType": "SOURCE", "FileChecksum": "SHA256: 81765af2daef323061dcbc5e61fc16481cb74b3bac9ad8a174b186523586f6c5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-post_update_sample-8176-1e615adf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 9": {"FileName": "./.git/hooks/pre-applypatch.sample", "SPDXID": "SPDXRef-file-pre_applypatch_sampl-e15c-cf090967", "FileType": "SOURCE", "FileChecksum": "SHA256: e15c5b469ea3e0a695bea6f2c82bcf8e62821074939ddd85b77e0007ff165475", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pre_applypatch_sampl-e15c-cf090967 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 10": {"FileName": "./.git/hooks/pre-commit.sample", "SPDXID": "SPDXRef-file-pre_commit_sample-d6d1-283147e8", "FileType": "SOURCE", "FileChecksum": "SHA256: d6d114e507a3295ff3a2e214611c2f5c0d13eaf0ed53f595ba02e4cc714fca18", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pre_commit_sample-d6d1-283147e8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 11": {"FileName": "./.git/hooks/pre-push.sample", "SPDXID": "SPDXRef-file-pre_push_sample-4b11-ae67edf8", "FileType": "SOURCE", "FileChecksum": "SHA256: 4b1119e1e13a212571976f4aee77847cdbd40978546d6273a557e238981a40d1", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pre_push_sample-4b11-ae67edf8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 12": {"FileName": "./.git/hooks/pre-rebase.sample", "SPDXID": "SPDXRef-file-pre_rebase_sample-4feb-76d91af5", "FileType": "SOURCE", "FileChecksum": "SHA256: 4febce867790052338076f4e66cc47efb14879d18097d1d61c8261859eaaa7b3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pre_rebase_sample-4feb-76d91af5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 13": {"FileName": "./.git/hooks/pre-receive.sample", "SPDXID": "SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a", "FileType": "SOURCE", "FileChecksum": "SHA256: a4c3d2b9c7bb3fd8d1441c31bd4ee71a595d66b44fcf49ddb310252320169989", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 14": {"FileName": "./.git/hooks/prepare-commit-msg.sample", "SPDXID": "SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a", "FileType": "SOURCE", "FileChecksum": "SHA256: e9ddcaa4189fddd25ed97fc8c789eca7b6ca16390b2392ae3276f0c8e1aa4619", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 15": {"FileName": "./.git/hooks/update.sample", "SPDXID": "SPDXRef-file-update_sample-751c-f24d4a8e", "FileType": "SOURCE", "FileChecksum": "SHA256: 751c037320024ec2ee2757f3ffae0b10ad2c946367684e7059d4dc97eac7e431", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-update_sample-751c-f24d4a8e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 16": {"FileName": "./.git/index", "SPDXID": "SPDXRef-file-index-d8b7-8c6d7613", "FileType": "OTHER", "FileChecksum": "SHA256: d8b785001c52f02516edb8b025467352e2aae2acfff86f15f2eee0900434d53a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-index-d8b7-8c6d7613 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 17": {"FileName": "./.git/info/exclude", "SPDXID": "SPDXRef-file-exclude-6671-2366dad5", "FileType": "OTHER", "FileChecksum": "SHA256: 6671fe83b7a07c8932ee89164d1f2793b2318058eb8b98dc5c06ee0a5a3b0ec1", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-exclude-6671-2366dad5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 18": {"FileName": "./.git/logs/HEAD", "SPDXID": "SPDXRef-file-HEAD-8d9c-eecd15bf", "FileType": "OTHER", "FileChecksum": "SHA256: 8d9cd532c3519a015533142b14ac2996cadfbbe4f1dc97fe81e7e59f02281cd6", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-HEAD-8d9c-eecd15bf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 19": {"FileName": "./.git/logs/refs/heads/develop", "SPDXID": "SPDXRef-file-develop-8d9c-dbcd3914", "FileType": "OTHER", "FileChecksum": "SHA256: 8d9cd532c3519a015533142b14ac2996cadfbbe4f1dc97fe81e7e59f02281cd6", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-develop-8d9c-dbcd3914 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 20": {"FileName": "./.git/logs/refs/remotes/origin/HEAD", "SPDXID": "SPDXRef-file-HEAD-bde0-fe304737", "FileType": "OTHER", "FileChecksum": "SHA256: bde07a2e0c6b63717d585ca7bf43a2d52f58255bf0790497964e201460fc32a3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-HEAD-bde0-fe304737 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 21": {"FileName": "./.git/logs/refs/remotes/origin/develop", "SPDXID": "SPDXRef-file-develop-179c-283dcc1b", "FileType": "OTHER", "FileChecksum": "SHA256: 179cee2b83862a6fab849713fa5d4f95ee4861af2b6a7f90ddddcb51e9b5dc00", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-develop-179c-283dcc1b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 22": {"FileName": "./.git/objects/0f/9b2a6c89c5bdb7e04f1152834cdc0406482a8a", "SPDXID": "SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff", "FileType": "OTHER", "FileChecksum": "SHA256: 3c876c77ab8874f2826b1f73296500a5ae138bad47f6881727fbab1c86dc038a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 23": {"FileName": "./.git/objects/18/dfd1f048c6234e6ed45ce383550d5364f37534", "SPDXID": "SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264", "FileType": "OTHER", "FileChecksum": "SHA256: a7d3757788bbfcb870f97df76c9c5f378a3209b70b94dff65f59121d00c0ffe5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 24": {"FileName": "./.git/objects/1c/bfa59973528844c15f336f49a085b46a4bf70a", "SPDXID": "SPDXRef-file-bfa59973528844c15f33-8077-fe76a541", "FileType": "OTHER", "FileChecksum": "SHA256: 8077fa7f5fcc76589b9b3622942f641757e2f2fa553507b52323e49550d8d874", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-bfa59973528844c15f33-8077-fe76a541 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 25": {"FileName": "./.git/objects/23/9890249b035ff66203c8acbb6a06f203b4eb44", "SPDXID": "SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e", "FileType": "OTHER", "FileChecksum": "SHA256: f622fcede7d89873590caf399c9c40fa5afafeb9abcd31a25dc68f0cc2e29bf1", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 26": {"FileName": "./.git/objects/25/227ca1f76895519f8cd68700092e794234f986", "SPDXID": "SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93", "FileType": "OTHER", "FileChecksum": "SHA256: 60861a2620abbcaffcc144e8e17787dbc63a653a8e652ebc276279170d69d209", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 27": {"FileName": "./.git/objects/29/0541c738646a3212199241f726c707e47a459c", "SPDXID": "SPDXRef-file-0541c738646a32121992-0131-a2667281", "FileType": "OTHER", "FileChecksum": "SHA256: 013131755c2eee698c9f8dd7b2e1d170995ab11b78e9537fad75f1aca8283476", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-0541c738646a32121992-0131-a2667281 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 28": {"FileName": "./.git/objects/31/1e563ba777508c3b5e30848ab6063efbbcbc94", "SPDXID": "SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b", "FileType": "OTHER", "FileChecksum": "SHA256: c698460cd5b9a9b52bbcc3904c7ebf6b4c5ae45285d92bc5c799b6933486fbec", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 29": {"FileName": "./.git/objects/4a/bcb0f0beef93a4edab9b0a2552b507e5ffe2d0", "SPDXID": "SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05", "FileType": "OTHER", "FileChecksum": "SHA256: d85e88f577bdb8715571de6151860c8e19b44a897b4a55d4eedad6b212c3260f", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 30": {"FileName": "./.git/objects/50/060ed59eadd81a2fb87206aa6cef552b05dd76", "SPDXID": "SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21", "FileType": "OTHER", "FileChecksum": "SHA256: 496efc2864219749f33ddb368f4649914c0b51b9f2d83ccde1682af797b28f54", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 31": {"FileName": "./.git/objects/5e/18c95217c400d47a55cd2253b5eb753f4b8a75", "SPDXID": "SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f", "FileType": "OTHER", "FileChecksum": "SHA256: 8ceccd66f953ca5260690be368eab10027904de760f9b47c494bb79e30a6dcef", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 32": {"FileName": "./.git/objects/5e/bd4b10a9a3e82841e0ace7f1750a4cb3c3160e", "SPDXID": "SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52", "FileType": "OTHER", "FileChecksum": "SHA256: 2b9bf3c2de754578df8e762b2ceccc74b8ef26892a8101bc2305bfb840c328f8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 33": {"FileName": "./.git/objects/69/47a7d393044565832ecdbfb01c0c6d9e288a85", "SPDXID": "SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4", "FileType": "OTHER", "FileChecksum": "SHA256: 03de986fe6437156ed6fbfed18a33db41d10803d95fad7f44796feb77b23af49", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 34": {"FileName": "./.git/objects/76/31c31a8ade86e34a4f7e38136eb87b69679df8", "SPDXID": "SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37", "FileType": "OTHER", "FileChecksum": "SHA256: 03e672c6182a86f3673c76698743fc25e087e41233309294b7428923cc208a6a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 35": {"FileName": "./.git/objects/83/39427a34646dcb8cd575e2706b6e0e078f7719", "SPDXID": "SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c", "FileType": "OTHER", "FileChecksum": "SHA256: af7b621fcbb46b3c7170b56bebdaff0e5caf4f4ac9672122c0695d29763042d6", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 36": {"FileName": "./.git/objects/88/fa96530dc44d7b5cfff6460611d72db44fa6f6", "SPDXID": "SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5", "FileType": "OTHER", "FileChecksum": "SHA256: 02556579ab2f570fdb52d7fed17f2aa6357d41a00b850ee6efa918756afcb548", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 37": {"FileName": "./.git/objects/94/336fcae912db8a11d55634156fa011f4686124", "SPDXID": "SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e", "FileType": "OTHER", "FileChecksum": "SHA256: 18b7bcb2a12a758ab72ecd900182b57b0309096d1dd84b972730e42dba3e4ed7", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 38": {"FileName": "./.git/objects/ab/8d5951413f5faf2fee430c090972b6528e774c", "SPDXID": "SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb", "FileType": "OTHER", "FileChecksum": "SHA256: 590d5eb616ba60f450aa3c925a5b2ebd1fcec8700b442f01e123e419d96bda0f", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 39": {"FileName": "./.git/objects/ac/f43aee0e066f6abb31e6f2cb062e13f8b47abe", "SPDXID": "SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78", "FileType": "OTHER", "FileChecksum": "SHA256: 83fe0d39f914c0fcd47a7bf2d5a27309d2a692ce309bd40fd97ef5f374526f22", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 40": {"FileName": "./.git/objects/b0/ff3e02afa65792a9f22c1c7536ef50b4e422f3", "SPDXID": "SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69", "FileType": "OTHER", "FileChecksum": "SHA256: 5d8de20ee8d298c5c816a2be31fdc036f4e48df55293a4cb538eadfdb2d4616e", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 41": {"FileName": "./.git/objects/be/d658044c4c693c7a9272a902791337399249a9", "SPDXID": "SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1", "FileType": "OTHER", "FileChecksum": "SHA256: 2f02cdb992b0a6fe539a41e0971d0a76e9d8bf7be4b0e0e1511e1d6bab52369d", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 42": {"FileName": "./.git/objects/c7/2568e90865b2b712eb20ae6e534ec59c459054", "SPDXID": "SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1", "FileType": "OTHER", "FileChecksum": "SHA256: aee629b6851cfe0178a149406597dd17218a2a9b7b4484f683e20dfc144f8108", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 43": {"FileName": "./.git/objects/c9/edcf6f8562217cfd625026c789cb0866f552e4", "SPDXID": "SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1", "FileType": "OTHER", "FileChecksum": "SHA256: 9a281c61b9b52c86a4f780390643a667b4004b075718753bdc5e2f40fc07d5fe", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 44": {"FileName": "./.git/objects/cc/cdd3d517fc5249beaefa600691cf150f2fa3e6", "SPDXID": "SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339", "FileType": "OTHER", "FileChecksum": "SHA256: 2491a796bdbd5000d6657a181d2fe1280f556adbfbb5b1d395ffd05ea6bdf2d3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 45": {"FileName": "./.git/objects/d5/4330d47ada63d1bfe9e23d9fc9dfd060936ab4", "SPDXID": "SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55", "FileType": "OTHER", "FileChecksum": "SHA256: 407a893ab1b50fa821e84f713071cab9c0a4ef44ac7e1e738d852d4785b33237", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 46": {"FileName": "./.git/objects/e7/4b247024c5c6b45901adbd54d2543e65c80aaf", "SPDXID": "SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff", "FileType": "OTHER", "FileChecksum": "SHA256: 6b052a66b5e6346733ded2e333c5f398835cba58863d10dff2a4c171060e7cc4", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 47": {"FileName": "./.git/objects/e8/e2371767de07b62a77e566709b7244deccf680", "SPDXID": "SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634", "FileType": "OTHER", "FileChecksum": "SHA256: ebd710e2fb0c3bcb3532bd3b6d778ab395a2e4d79fa090f282fa3c533346cace", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 48": {"FileName": "./.git/objects/ee/b11f778ce6e6fbe0dcca512b4683f24e1ce197", "SPDXID": "SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d", "FileType": "OTHER", "FileChecksum": "SHA256: 546a7ee7313eeaf199df4c4b1e5e042c706514f187b4fc1cac36ae7695357dfe", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 49": {"FileName": "./.git/objects/pack/pack-70b91df528191bc49dc1c3e7602e4c16625e638d.idx", "SPDXID": "SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39", "FileType": "OTHER", "FileChecksum": "SHA256: c5e2a1c7fb6e03ecfbfa98f6b45d78b14ef5510789695b50dd9772944f8e31c5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 50": {"FileName": "./.git/objects/pack/pack-70b91df528191bc49dc1c3e7602e4c16625e638d.pack", "SPDXID": "SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936", "FileType": "OTHER", "FileChecksum": "SHA256: aaa8cbed964c771a8f43ad6ec95ff462108f091372cd0e9bb8cb591b0784baa4", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 51": {"FileName": "./.git/packed-refs", "SPDXID": "SPDXRef-file-packed_refs-391c-7b0ae16a", "FileType": "OTHER", "FileChecksum": "SHA256: 391c9c6e8a5140512e0477e30397485e739de21dcaa984521d5828ca759c67b8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-packed_refs-391c-7b0ae16a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 52": {"FileName": "./.git/refs/heads/develop", "SPDXID": "SPDXRef-file-develop-9746-efaf18b4", "FileType": "OTHER", "FileChecksum": "SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-develop-9746-efaf18b4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 53": {"FileName": "./.git/refs/remotes/origin/HEAD", "SPDXID": "SPDXRef-file-HEAD-bda5-d198df9c", "FileType": "OTHER", "FileChecksum": "SHA256: bda5cfbd39e60865d1109488bdc0ef20a99b0a24a91e9a932948d1bd5f9f2e41", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-HEAD-bda5-d198df9c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 54": {"FileName": "./.git/refs/remotes/origin/develop", "SPDXID": "SPDXRef-file-develop-9746-287d86ec", "FileType": "OTHER", "FileChecksum": "SHA256: 974662948621f8e97f6b2c9f91ea6047844454ccf104b852ad9efcc17a3e97bd", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-develop-9746-287d86ec CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 55": {"FileName": "./.gitignore", "SPDXID": "SPDXRef-file-_gitignore-f185-f2501c25", "FileType": "OTHER", "FileChecksum": "SHA256: f185f5100812d3fc14fd3d978ab122cf30346cc400fe9dff6864937edf7e8d18", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-_gitignore-f185-f2501c25 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 56": {"FileName": "./.travis.yml", "SPDXID": "SPDXRef-file-_travis_yml-f26b-49aa582b", "FileType": "OTHER", "FileChecksum": "SHA256: f26bede8447cb88445aaa4adc7971e9f11e014c3266b7ed3327011dbcb603598", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-_travis_yml-f26b-49aa582b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 57": {"FileName": "./HEADER", "SPDXID": "SPDXRef-file-HEADER-f2f3-b7d79a87", "FileType": "OTHER", "FileChecksum": "SHA256: f2f3780765d50cb74f35c8538fa1e8c062952e3ebd68ea98aa225cbccb4382f3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-HEADER-f2f3-b7d79a87 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 58": {"FileName": "./LICENSE", "SPDXID": "SPDXRef-file-LICENSE-b409-f02edb2c", "FileType": "OTHER", "FileChecksum": "SHA256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-LICENSE-b409-f02edb2c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 59": {"FileName": "./NOTICE.txt", "SPDXID": "SPDXRef-file-NOTICE_txt-1f6f-54796365", "FileType": "OTHER", "FileChecksum": "SHA256: 1f6ffde12dea456419908279ca9b8fe7729ae3a36985ef18d69c4b2340edb1eb", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-NOTICE_txt-1f6f-54796365 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 60": {"FileName": "./README.md", "SPDXID": "SPDXRef-file-README_md-021c-6d24c2c7", "FileType": "OTHER", "FileChecksum": "SHA256: 021c78eacbe534bf7aa7c94a4a7f70153d50a86d2f01e5d59bffd79417bc6c75", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-README_md-021c-6d24c2c7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 61": {"FileName": "./api/build.gradle", "SPDXID": "SPDXRef-file-build_gradle-49e1-97cfbd49", "FileType": "OTHER", "FileChecksum": "SHA256: 49e140d37a0b0598fbde64cca2933da7ddc68e8144b4582bd9ddf2ebc27c3cdf", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-build_gradle-49e1-97cfbd49 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 62": {"FileName": "./api/settings.gradle", "SPDXID": "SPDXRef-file-settings_gradle-061d-abf48eab", "FileType": "OTHER", "FileChecksum": "SHA256: 061d4542596560920de07c6171491c9bc0404b7c1404503a726768bf91ea2687", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-settings_gradle-061d-abf48eab CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 63": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/RoleConstants.java", "SPDXID": "SPDXRef-file-RoleConstants_java-b90a-15b79259", "FileType": "OTHER", "FileChecksum": "SHA256: b90a65611bc6f6a671f943a0c99d97d182f2741f5908b315b4505601d286fe60", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-RoleConstants_java-b90a-15b79259 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 64": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/TokenConstants.java", "SPDXID": "SPDXRef-file-TokenConstants_java-4d49-b5462e84", "FileType": "OTHER", "FileChecksum": "SHA256: 4d494405fe33bf57fa27f42b05c6592f50e0f215bd6db2c65ce51be235405fba", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenConstants_java-4d49-b5462e84 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 65": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/client/Anubis.java", "SPDXID": "SPDXRef-file-Anubis_java-eefa-941edce8", "FileType": "SOURCE", "FileChecksum": "SHA256: eefac641d6b5f3feae2129a55e8ec68422e2a4414a743d18ce9216d74428c573", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Anubis_java-eefa-941edce8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 66": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/client/AnubisApiFactory.java", "SPDXID": "SPDXRef-file-AnubisApiFactory_jav-70db-a57209af", "FileType": "SOURCE", "FileChecksum": "SHA256: 70dbdabb7b9c11be938715cb0a6f0d13eccdd57f5d0eeac242d424bae79c7025", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisApiFactory_jav-70db-a57209af CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 67": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/AllowedOperation.java", "SPDXID": "SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0", "FileType": "SOURCE", "FileChecksum": "SHA256: 9853058597707e98f72bd5de7f487954b1d0c9e83ba631a56d407b967861aec8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 68": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/ApplicationSignatureSet.java", "SPDXID": "SPDXRef-file-ApplicationSignature-bab0-a3d28964", "FileType": "SOURCE", "FileChecksum": "SHA256: bab08075bfcfc66097dc0fa9a409160ac625e193ab34645f9c0fcb64ef8ca8d8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ApplicationSignature-bab0-a3d28964 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 69": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/PermittableEndpoint.java", "SPDXID": "SPDXRef-file-PermittableEndpoint_-99d3-52aa6642", "FileType": "SOURCE", "FileChecksum": "SHA256: 99d30eaf70d3ff8e9d2cc4519f61bc7b909005a90570e75d962d3f504376ca08", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-PermittableEndpoint_-99d3-52aa6642 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 70": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/Signature.java", "SPDXID": "SPDXRef-file-Signature_java-11ac-fe10a423", "FileType": "SOURCE", "FileChecksum": "SHA256: 11aca00f24483c3728ddc24d920e4dcaf2b8325beb4ec9a779000949462eb0b0", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Signature_java-11ac-fe10a423 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 71": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/TokenContent.java", "SPDXID": "SPDXRef-file-TokenContent_java-8f84-b1604a8e", "FileType": "SOURCE", "FileChecksum": "SHA256: 8f84b9a00c504cf7820018e7d1e56de2b21e10e0729de0213988a0f952fabfdb", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenContent_java-8f84-b1604a8e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 72": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/TokenPermission.java", "SPDXID": "SPDXRef-file-TokenPermission_java-39cb-c1dc5d32", "FileType": "SOURCE", "FileChecksum": "SHA256: 39cb584f90acf8a77e09f5f8c7268cd53eccf2384db5148502b1f9de91933b1a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenPermission_java-39cb-c1dc5d32 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 73": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/validation/CheckKeyTimestamp.java", "SPDXID": "SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b", "FileType": "SOURCE", "FileChecksum": "SHA256: 3b69bc0c41e009cd242cec2c33fc6fb594e1210770b8dacd5aeda79ce29d74d2", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 74": {"FileName": "./api/src/main/java/org/apache/fineract/cn/anubis/api/v1/validation/ValidKeyTimestamp.java", "SPDXID": "SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3", "FileType": "SOURCE", "FileChecksum": "SHA256: 08f2d3473c1ecffcaf6520b6996cfb2043680ff1db25dfd50f9f9960d4652ca5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 75": {"FileName": "./api/src/test/java/org/apache/fineract/cn/anubis/api/v1/validation/CheckKeyTimestampTest.java", "SPDXID": "SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b", "FileType": "SOURCE", "FileChecksum": "SHA256: d028e6f00cbfc69e33de0badbff998b5c2341faaca0c2c8eef30d4d1fc93da5a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 76": {"FileName": "./build.gradle", "SPDXID": "SPDXRef-file-build_gradle-6ebe-7886854a", "FileType": "OTHER", "FileChecksum": "SHA256: 6ebe2c23f074fb509caced5976f4c050a46a976a1eb90ff9883ee4f4206c7316", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-build_gradle-6ebe-7886854a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 77": {"FileName": "./component-test/build.gradle", "SPDXID": "SPDXRef-file-build_gradle-57f2-4b69b077", "FileType": "OTHER", "FileChecksum": "SHA256: 57f2af867f0f47e79102309173c6d7e2c4c04d449abc9759f9edd04ee2347c1a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-build_gradle-57f2-4b69b077 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 78": {"FileName": "./component-test/settings.gradle", "SPDXID": "SPDXRef-file-settings_gradle-2308-4f3deade", "FileType": "OTHER", "FileChecksum": "SHA256: 2308c47c3321338cefda11d13c96a2a2e4be4c131f1c13bc947d9188d6fa9748", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-settings_gradle-2308-4f3deade CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 79": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractNoInitializeTest.java", "SPDXID": "SPDXRef-file-AbstractNoInitialize-5407-b73cf653", "FileType": "SOURCE", "FileChecksum": "SHA256: 54078f079672a631c545041fa676ca7d45c0383f9b7a4fa7803f21f02211aed1", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AbstractNoInitialize-5407-b73cf653 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 80": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractNoKeyStorageTest.java", "SPDXID": "SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73", "FileType": "SOURCE", "FileChecksum": "SHA256: 73a21f30b88c4cc0010da2f477a5ab9fec9016e1a4edc75748bbd03f36e9dcd4", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 81": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/AbstractSimpleTest.java", "SPDXID": "SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd", "FileType": "SOURCE", "FileChecksum": "SHA256: 79003a291f89ea67515aa219f2a13c53727fb78af2278f80a76bc4e4a1ed1c60", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 82": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitialize.java", "SPDXID": "SPDXRef-file-TestAnubisInitialize-2af4-8c707c18", "FileType": "SOURCE", "FileChecksum": "SHA256: 2af4ddae5500fe13ec1ec2e620cce3f6a5c79cfccc3caaa09ad4c1693e6585f8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestAnubisInitialize-2af4-8c707c18 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 83": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitializeWithSpecialTenantSignatureRepository.java", "SPDXID": "SPDXRef-file-TestAnubisInitialize-0121-cec2dd00", "FileType": "SOURCE", "FileChecksum": "SHA256: 012179d68bcb80a11ef40f931489349dd97f127df9210ac14bc827fad9ab4c67", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestAnubisInitialize-0121-cec2dd00 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 84": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisInitializeWithoutServiceBacking.java", "SPDXID": "SPDXRef-file-TestAnubisInitialize-7720-c38af656", "FileType": "SOURCE", "FileChecksum": "SHA256: 772027de0613b0556aff7ac5e014fa0c6b9684e2c1bfdf0594e8b8a1de61e8e7", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestAnubisInitialize-7720-c38af656 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 85": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisKeyRotation.java", "SPDXID": "SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12", "FileType": "SOURCE", "FileChecksum": "SHA256: 6b204ab3c9d3e6bb75bb4284ddcc36f1e0e94f7b0c7b6ce3f3047f17178d8bb4", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 86": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestAnubisTenantPermissions.java", "SPDXID": "SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b", "FileType": "SOURCE", "FileChecksum": "SHA256: 7c01981890e4a991f16c881ef2ac6a73555e4b1a0e3405697d084483d8a83cbf", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 87": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestPermittableEndpoints.java", "SPDXID": "SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c", "FileType": "SOURCE", "FileChecksum": "SHA256: f6262e223e01509023bea3e18ddc44b969b6262ba8f2e1d0855722398bfe7280", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 88": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/TestSystemToken.java", "SPDXID": "SPDXRef-file-TestSystemToken_java-54e4-761dc95d", "FileType": "SOURCE", "FileChecksum": "SHA256: 54e4f6d318c42835d81b436e9143fe44b8c83357818d51ef51e0eb0271d04342", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestSystemToken_java-54e4-761dc95d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 89": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/Example.java", "SPDXID": "SPDXRef-file-Example_java-7046-7379a00e", "FileType": "SOURCE", "FileChecksum": "SHA256: 7046595f66772a98efa7cca2544b9eb1f1cf9bd5593158a06f4b44108c6c6d36", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Example_java-7046-7379a00e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 90": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/ExampleConfiguration.java", "SPDXID": "SPDXRef-file-ExampleConfiguration-ca75-d71d27f5", "FileType": "SOURCE", "FileChecksum": "SHA256: ca753e6fb83010966149c436c824ff8894c2f310e5f3c5765f842550ce32c3ed", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleConfiguration-ca75-d71d27f5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 91": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/ExampleRestController.java", "SPDXID": "SPDXRef-file-ExampleRestControlle-d792-46b730b1", "FileType": "SOURCE", "FileChecksum": "SHA256: d792425cfbc06ee7bdef2f0caa12884afec2d2d7d0c52607e079f72909ca95ec", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleRestControlle-d792-46b730b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 92": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/noinitialize/UserContext.java", "SPDXID": "SPDXRef-file-UserContext_java-aeb5-4d4141da", "FileType": "SOURCE", "FileChecksum": "SHA256: aeb59dd4dc8ef15e469293674c43e828fd301e3b91c338bf51267580021527a0", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-UserContext_java-aeb5-4d4141da CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 93": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/Example.java", "SPDXID": "SPDXRef-file-Example_java-10dd-522b4703", "FileType": "SOURCE", "FileChecksum": "SHA256: 10dd329c240e075a231a48412b19590961dc8eb3227542ebb8b2eefc0ed8dcfc", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Example_java-10dd-522b4703 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 94": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/ExampleConfiguration.java", "SPDXID": "SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4", "FileType": "SOURCE", "FileChecksum": "SHA256: fcc3316af40eb3c1f9fbf77394a9245aacca81657051187aa31e71855e6c0f80", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 95": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/ExampleRestController.java", "SPDXID": "SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f", "FileType": "SOURCE", "FileChecksum": "SHA256: e99b9ac8aff95aa9c80088dc915a5e33bb478c6040e27ce2db98b35ef8cfaf27", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 96": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/SpecialTenantSignatureRepository.java", "SPDXID": "SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9", "FileType": "SOURCE", "FileChecksum": "SHA256: df363257088f6cc69c7a43fcbd09b0128262df715911862cfa2be990d196b9d5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 97": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/Example.java", "SPDXID": "SPDXRef-file-Example_java-3049-d95febd6", "FileType": "SOURCE", "FileChecksum": "SHA256: 30490396ab15c4f03bee5d27c4f1c8bb27649aa9bab553547c269b512a319316", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Example_java-3049-d95febd6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 98": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/ExampleConfiguration.java", "SPDXID": "SPDXRef-file-ExampleConfiguration-7608-96a4eb71", "FileType": "SOURCE", "FileChecksum": "SHA256: 7608fac76e7d57e18265e71f63d5b053bf867a5097d76ca3fed1c29796b11cdd", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleConfiguration-7608-96a4eb71 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 99": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/ExampleRestController.java", "SPDXID": "SPDXRef-file-ExampleRestControlle-1b88-25a80fea", "FileType": "SOURCE", "FileChecksum": "SHA256: 1b88dab1f28ff8349f74b9e6b1bd74dca5a723211a6835c31a2ecd9beac15389", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ExampleRestControlle-1b88-25a80fea CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 100": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/Metrics.java", "SPDXID": "SPDXRef-file-Metrics_java-4596-4fa8e6de", "FileType": "OTHER", "FileChecksum": "SHA256: 45966566b7a6e38a52ea41847567906161762fecc1732337616f89e50e9e76f8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Metrics_java-4596-4fa8e6de CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 101": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/MetricsFeignClient.java", "SPDXID": "SPDXRef-file-MetricsFeignClient_j-cc28-f30470de", "FileType": "SOURCE", "FileChecksum": "SHA256: cc28fc3ac9f268ebeaaa439242401399a8ff623556392bcc3ce3721485cf06f0", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-MetricsFeignClient_j-cc28-f30470de CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 102": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/SuiteTestEnvironment.java", "SPDXID": "SPDXRef-file-SuiteTestEnvironment-0145-a6761987", "FileType": "SOURCE", "FileChecksum": "SHA256: 0145f76f7e02b508a7ca7f0e4460193f26ed754fe9913e7fc884f265ae706aa8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SuiteTestEnvironment-0145-a6761987 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 103": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteNoInitialize.java", "SPDXID": "SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219", "FileType": "SOURCE", "FileChecksum": "SHA256: d82af3d6e31f7fdff3dddba2c2b176cf9d719101b9d697871d7b2e324d4a2d98", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 104": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteNoKeyStorage.java", "SPDXID": "SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6", "FileType": "SOURCE", "FileChecksum": "SHA256: fea4bfebcdcc78577532565f751cebadf9ecd679ed1bc0ebbf2ddb17953db9a7", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 105": {"FileName": "./component-test/src/main/java/org/apache/fineract/cn/anubis/suites/TestSuiteSimple.java", "SPDXID": "SPDXRef-file-TestSuiteSimple_java-434c-00329be8", "FileType": "SOURCE", "FileChecksum": "SHA256: 434c0ee21520e0481e6dfe70dc7a1c47e7a1460e52592ed469e11ee3e09fe02f", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TestSuiteSimple_java-434c-00329be8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 106": {"FileName": "./component-test/src/main/resources/logback.xml", "SPDXID": "SPDXRef-file-logback_xml-a6b5-4169e57a", "FileType": "OTHER", "FileChecksum": "SHA256: a6b50980fa974a62a7b6877ff4febc66e20089e1aad060b11e185e67d3d0a09d", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-logback_xml-a6b5-4169e57a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 107": {"FileName": "./gradle/wrapper/gradle-wrapper.jar", "SPDXID": "SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0", "FileType": "ARCHIVE", "FileChecksum": "SHA256: 660ab018b8e319e9ae779fdb1b7ac47d0321bde953bf0eb4545f14952cfdcaa3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 108": {"FileName": "./gradle/wrapper/gradle-wrapper.properties", "SPDXID": "SPDXRef-file-gradle_wrapper_prope-0419-6031525e", "FileType": "OTHER", "FileChecksum": "SHA256: 0419361b32d7902c6c720e5f4fd8f58b1b5a7ad3899c846d8618397397afe3f8", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-gradle_wrapper_prope-0419-6031525e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 109": {"FileName": "./gradlew", "SPDXID": "SPDXRef-file-gradlew-8c4c-ff6b12aa", "FileType": "SOURCE", "FileChecksum": "SHA256: 8c4c04dd98db1f00d49456dd162418a39312c5cb13d6865d783deb483bd1ed22", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-gradlew-8c4c-ff6b12aa CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 110": {"FileName": "./gradlew.bat", "SPDXID": "SPDXRef-file-gradlew_bat-0008-4862acca", "FileType": "OTHER", "FileChecksum": "SHA256: 0008d785920c9ff5cab17403e0270ccc7ceee8e169b6d67a82d96a5475fec5c9", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "NOASSERTION", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-gradlew_bat-0008-4862acca CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 111": {"FileName": "./library/build.gradle", "SPDXID": "SPDXRef-file-build_gradle-1c0a-4811bb43", "FileType": "OTHER", "FileChecksum": "SHA256: 1c0aef9ec07147c6b24bec031de557bc5d97a2be0b839c571ace312041d505d6", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-build_gradle-1c0a-4811bb43 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 112": {"FileName": "./library/settings.gradle", "SPDXID": "SPDXRef-file-settings_gradle-5399-268632aa", "FileType": "OTHER", "FileChecksum": "SHA256: 5399ab5bbddda4b7fc2d0a0d930b366620502ee2f3f865fd085126cd2b43b9b2", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-settings_gradle-5399-268632aa CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 113": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/annotation/AcceptedTokenType.java", "SPDXID": "SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5", "FileType": "OTHER", "FileChecksum": "SHA256: d97687d3584f76c0cd9cc221faad37e8bf89026c181087927090e8160daab106", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 114": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/annotation/Permittable.java", "SPDXID": "SPDXRef-file-Permittable_java-f92d-00f4eeb8", "FileType": "SOURCE", "FileChecksum": "SHA256: f92df5915a4108431ae02d1f1e7b35ad2f4ae505c650200031d5849a9fb98d16", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Permittable_java-f92d-00f4eeb8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 115": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/annotation/Permittables.java", "SPDXID": "SPDXRef-file-Permittables_java-5bb6-85929b53", "FileType": "SOURCE", "FileChecksum": "SHA256: 5bb6daf7c0ce8908b7f62211dacc661cd9e8c742f5e47838de01cd2f0d1f9e8a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-Permittables_java-5bb6-85929b53 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 116": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisConfiguration.java", "SPDXID": "SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1", "FileType": "SOURCE", "FileChecksum": "SHA256: c5f11855bcad3d410cc791ce14718da2bf1e577ecb4d35fecf6de8b3e9d91311", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 117": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisConstants.java", "SPDXID": "SPDXRef-file-AnubisConstants_java-3477-82f77f2c", "FileType": "OTHER", "FileChecksum": "SHA256: 347786b22348989a69a7bde48146288a75c532951d48714c3d7d5ac1c2193bd3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisConstants_java-3477-82f77f2c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 118": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisImportSelector.java", "SPDXID": "SPDXRef-file-AnubisImportSelector-00da-bd438313", "FileType": "SOURCE", "FileChecksum": "SHA256: 00dab16f62a04adc93b6270477260c0ecdf3b963f873cca3a304a214b35c3d49", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisImportSelector-00da-bd438313 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 119": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisProperties.java", "SPDXID": "SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac", "FileType": "SOURCE", "FileChecksum": "SHA256: 92c4843fd5ddfab56a4598ca7e8ff9330a59d461d588f75cf1a31c9eddd0c063", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 120": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/AnubisSecurityConfigurerAdapter.java", "SPDXID": "SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810", "FileType": "SOURCE", "FileChecksum": "SHA256: 0d69262d6cbedc83044367c6d692002559824a2b7a4203090ac89e95f8b8feac", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 121": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/EnableAnubis.java", "SPDXID": "SPDXRef-file-EnableAnubis_java-6913-9438c97b", "FileType": "SOURCE", "FileChecksum": "SHA256: 6913441d9f8f1d289bbef463ea51056cfea2e2f46b799d9dd31a4522d2406b32", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-EnableAnubis_java-6913-9438c97b CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 122": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/config/TenantSignatureRepository.java", "SPDXID": "SPDXRef-file-TenantSignatureRepos-6c67-c15729ad", "FileType": "SOURCE", "FileChecksum": "SHA256: 6c67e4a1292ae469bc55ee89cb153766f1120e3a0a06fd31ffb6210f68468bbc", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantSignatureRepos-6c67-c15729ad CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 123": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/controller/EmptyInitializeResourcesRestController.java", "SPDXID": "SPDXRef-file-EmptyInitializeResou-cf04-10175772", "FileType": "SOURCE", "FileChecksum": "SHA256: cf041c5a65980ca521011c21afc0ad55ba1fd45642bcfb8f90a52a0007aae6d9", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-EmptyInitializeResou-cf04-10175772 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 124": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/controller/PermittableRestController.java", "SPDXID": "SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d", "FileType": "SOURCE", "FileChecksum": "SHA256: bbc592829c0c6b16791e1cb810258182df5d8653ab5797ff0d9da38266fb7678", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 125": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/controller/SignatureCreatorRestController.java", "SPDXID": "SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6", "FileType": "SOURCE", "FileChecksum": "SHA256: f2a68ec6ab2d68a8efb0343fbc9f84f01bcd0e8dbad29aafc0d469d840793e93", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 126": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/controller/SignatureRestController.java", "SPDXID": "SPDXRef-file-SignatureRestControl-2242-c2dfa47a", "FileType": "SOURCE", "FileChecksum": "SHA256: 22420db88f6c43b14bceedb9f308756546068e2c5d5fd889d7450544e493011e", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SignatureRestControl-2242-c2dfa47a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 127": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/filter/IsisAuthenticatedProcessingFilter.java", "SPDXID": "SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da", "FileType": "SOURCE", "FileChecksum": "SHA256: ac4c252fc1bdd1ebe073c3aec813a81a497ed47d27f40fb78fed7d8458f83777", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 128": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/filter/UserContextFilter.java", "SPDXID": "SPDXRef-file-UserContextFilter_ja-3470-5542cb26", "FileType": "SOURCE", "FileChecksum": "SHA256: 3470efb103b322d23e0f3bb3be1ae6290741a013e632faa758bc89ed094d5f58", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-UserContextFilter_ja-3470-5542cb26 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 129": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/provider/InvalidKeyTimestampException.java", "SPDXID": "SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd", "FileType": "OTHER", "FileChecksum": "SHA256: 6c8b2e8e6ad4b49706556fa14df20f534819b7ffaeacaabc38a2f87694e0076a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 130": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/provider/SystemRsaKeyProvider.java", "SPDXID": "SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8", "FileType": "SOURCE", "FileChecksum": "SHA256: 187fb74b0944e2dfec5f72f1c52025dfc3c99d97a13fc66eebd8dc687061ec72", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 131": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/provider/TenantRsaKeyProvider.java", "SPDXID": "SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c", "FileType": "SOURCE", "FileChecksum": "SHA256: 8ca86bd60fef56b2dc4f496e40e12700fc4a913339fc75adac2945a5f79d2451", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 132": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/repository/TenantAuthorizationDataRepository.java", "SPDXID": "SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36", "FileType": "SOURCE", "FileChecksum": "SHA256: 07d47595a0159da5ed788b5c0f2a1d684ae039e20f2455445c211cff2c675071", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 133": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/AmitAuthenticationException.java", "SPDXID": "SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4", "FileType": "SOURCE", "FileChecksum": "SHA256: be679afeee8075033ae6e21d3697cb4e48004fa871bc92dec2d3ba862bf8f95d", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 134": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/AnubisAuthentication.java", "SPDXID": "SPDXRef-file-AnubisAuthentication-ff86-573396e6", "FileType": "SOURCE", "FileChecksum": "SHA256: ff861d632824d7cc2aeaf0a344a13a015525c64d8ba9b2d5e99d00742adddb90", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisAuthentication-ff86-573396e6 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 135": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/AnubisPrincipal.java", "SPDXID": "SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2", "FileType": "SOURCE", "FileChecksum": "SHA256: 38fd530dcb1ad609715ff522cbcf691bad6df31b71c8b2f93541ceef9592743a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 136": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/ApplicationPermission.java", "SPDXID": "SPDXRef-file-ApplicationPermissio-793a-6121eea7", "FileType": "SOURCE", "FileChecksum": "SHA256: 793a4152c1e64beec6a815d8ca42092767572579f486af41ec7bbd07f19197ec", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ApplicationPermissio-793a-6121eea7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 137": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/GuestAuthenticator.java", "SPDXID": "SPDXRef-file-GuestAuthenticator_j-8952-55032a59", "FileType": "SOURCE", "FileChecksum": "SHA256: 8952cb1a57465a613850b17023e4c90cb9356a52d7fb461ed72e0821b9d13e30", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-GuestAuthenticator_j-8952-55032a59 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 138": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/IsisAuthenticatedAuthenticationProvider.java", "SPDXID": "SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf", "FileType": "SOURCE", "FileChecksum": "SHA256: 91b347526f5f35825a11eea6b62d22d0b7b72f4864663291b3c8cd5c6adcdbcd", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 139": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/SystemAuthenticator.java", "SPDXID": "SPDXRef-file-SystemAuthenticator_-1971-93a0d900", "FileType": "SOURCE", "FileChecksum": "SHA256: 1971c0882913c21e3796fc97fabc65a64a8048a2e7db56ba84e72d2cd4d3f1a5", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SystemAuthenticator_-1971-93a0d900 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 140": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/TenantAuthenticator.java", "SPDXID": "SPDXRef-file-TenantAuthenticator_-831f-be7e2c69", "FileType": "SOURCE", "FileChecksum": "SHA256: 831f707c5e02188499e657d97ad5f685ef2f697d38796cc5c4604398cbe2663b", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantAuthenticator_-831f-be7e2c69 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 141": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/TokenInfo.java", "SPDXID": "SPDXRef-file-TokenInfo_java-fc2a-94074cc8", "FileType": "SOURCE", "FileChecksum": "SHA256: fc2ae5b055d2b91580dfffd9c62c4bda75765af5e2a394966f9c4eb738e352cf", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenInfo_java-fc2a-94074cc8 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 142": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/security/UrlPermissionChecker.java", "SPDXID": "SPDXRef-file-UrlPermissionChecker-37e9-f80973f9", "FileType": "SOURCE", "FileChecksum": "SHA256: 37e948a2254c3c7b7760bc3cf95171370b8ffacb18493954da656c53816d1190", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-UrlPermissionChecker-37e9-f80973f9 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 143": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/service/PermissionSegmentMatcher.java", "SPDXID": "SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e", "FileType": "SOURCE", "FileChecksum": "SHA256: 9dfadc62b8a82aa5f79d30b6d34789895708cda0163d8cc92c5cd7d4ccd22f4c", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 144": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/service/PermittableService.java", "SPDXID": "SPDXRef-file-PermittableService_j-6cbb-f8a99237", "FileType": "SOURCE", "FileChecksum": "SHA256: 6cbb58e777a32e89574b82329c5aa80d8eb9e46bec1cc62a6f70b83d82e4e8e9", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-PermittableService_j-6cbb-f8a99237 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 145": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/SystemAccessTokenSerializer.java", "SPDXID": "SPDXRef-file-SystemAccessTokenSer-cafc-5080001a", "FileType": "SOURCE", "FileChecksum": "SHA256: cafc12f96362a3973e87824670602030bd979ad7ccd73cb632c0d1714e88e018", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SystemAccessTokenSer-cafc-5080001a CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 146": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantAccessTokenSerializer.java", "SPDXID": "SPDXRef-file-TenantAccessTokenSer-ad21-c6845356", "FileType": "SOURCE", "FileChecksum": "SHA256: ad211eea785dd9713558ec536852a68a87c859b89ddb8cdb89181846573c5dd6", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantAccessTokenSer-ad21-c6845356 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 147": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantApplicationRsaKeyProvider.java", "SPDXID": "SPDXRef-file-TenantApplicationRsa-47a9-09ef0560", "FileType": "SOURCE", "FileChecksum": "SHA256: 47a9cfc7d01c7353e3582028488d3acff654d7b3841646fd52e812eb6f2d972a", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantApplicationRsa-47a9-09ef0560 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 148": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TenantRefreshTokenSerializer.java", "SPDXID": "SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7", "FileType": "SOURCE", "FileChecksum": "SHA256: 7fccff33ebe5f191ec1014671bc378b495f2322debe0ac2c16b4bcee33fc6dca", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 149": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenDeserializationResult.java", "SPDXID": "SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c", "FileType": "SOURCE", "FileChecksum": "SHA256: ccb5181e316cd6105640eec64ca81150f642f33b39af9613eff747cd0d61f86c", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 150": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenSerializationResult.java", "SPDXID": "SPDXRef-file-TokenSerializationRe-d52e-273d6650", "FileType": "SOURCE", "FileChecksum": "SHA256: d52ea1b30dd84202a7dd14cba28dbd227dce7a8c65267592fe09afe2efbe8a5d", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenSerializationRe-d52e-273d6650 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 151": {"FileName": "./library/src/main/java/org/apache/fineract/cn/anubis/token/TokenType.java", "SPDXID": "SPDXRef-file-TokenType_java-a9b2-7fe86cab", "FileType": "SOURCE", "FileChecksum": "SHA256: a9b2d5aafd38cc04d792077f7a466a1dac7b236a07032f512251283003cb7d02", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenType_java-a9b2-7fe86cab CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 152": {"FileName": "./library/src/test/java/org/apache/fineract/cn/anubis/security/ApplicationPermissionTest.java", "SPDXID": "SPDXRef-file-ApplicationPermissio-7555-44e2e6c5", "FileType": "SOURCE", "FileChecksum": "SHA256: 7555b8fab2c6e65f5e3e1454510db7f84f792a662768314eade270efe7698a6f", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-ApplicationPermissio-7555-44e2e6c5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 153": {"FileName": "./library/src/test/java/org/apache/fineract/cn/anubis/token/SystemAccessTokenSerializerTest.java", "SPDXID": "SPDXRef-file-SystemAccessTokenSer-1202-01890c06", "FileType": "SOURCE", "FileChecksum": "SHA256: 120249d6b197e65563696923f0720aab74543c50d9e661e1789cd65aeafc3227", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SystemAccessTokenSer-1202-01890c06 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 154": {"FileName": "./library/src/test/java/org/apache/fineract/cn/anubis/token/TenantAccessTokenSerializerTest.java", "SPDXID": "SPDXRef-file-TenantAccessTokenSer-2516-1f97677e", "FileType": "SOURCE", "FileChecksum": "SHA256: 2516fed0f7888dbcd04eaafb162a3d00094f2055384dca38850356bfb33a2efe", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantAccessTokenSer-2516-1f97677e CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 155": {"FileName": "./library/src/test/java/org/apache/fineract/cn/anubis/token/TenantRefreshTokenSerializerTest.java", "SPDXID": "SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d", "FileType": "SOURCE", "FileChecksum": "SHA256: 101898dfcf28e46664ef6573daac321c37f21b71849fce44e5fb52b491d988b0", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 156": {"FileName": "./library/src/test/java/org/apache/fineract/cn/anubis/token/TokenTypeTest.java", "SPDXID": "SPDXRef-file-TokenTypeTest_java-84d9-4a10baec", "FileType": "SOURCE", "FileChecksum": "SHA256: 84d9f71061af344f79377f9868c435790a828e0a06f5921df2c1fb3702c47692", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TokenTypeTest_java-84d9-4a10baec CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 157": {"FileName": "./settings.gradle", "SPDXID": "SPDXRef-file-settings_gradle-7ef2-5591dd84", "FileType": "OTHER", "FileChecksum": "SHA256: 7ef2a613361541b426910e4088c8769c90bb6dd13df4eebaa44b9fb3e072e164", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-settings_gradle-7ef2-5591dd84 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 158": {"FileName": "./shared.gradle", "SPDXID": "SPDXRef-file-shared_gradle-b132-604f237f", "FileType": "OTHER", "FileChecksum": "SHA256: b1329de8563afdd23c4bbfd43bafa3034690fbabec9d80f26d786653c1cc6fef", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-shared_gradle-b132-604f237f CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 159": {"FileName": "./test/build.gradle", "SPDXID": "SPDXRef-file-build_gradle-c025-7530da98", "FileType": "OTHER", "FileChecksum": "SHA256: c02544130e23d17581944402a02b39938928b286e55150aa9bbdf00026bd159d", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-build_gradle-c025-7530da98 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 160": {"FileName": "./test/settings.gradle", "SPDXID": "SPDXRef-file-settings_gradle-7e17-aaa431d5", "FileType": "OTHER", "FileChecksum": "SHA256: 7e17093510ac13a0fbe1d4f9ea522090af0edc7b6a7f7b0e854d731da6af5424", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-settings_gradle-7e17-aaa431d5 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 161": {"FileName": "./test/src/main/java/org/apache/fineract/cn/anubis/test/v1/SystemSecurityEnvironment.java", "SPDXID": "SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46", "FileType": "SOURCE", "FileChecksum": "SHA256: b8b48a7ab5020f6acb1a59b01ea0e7d10c79fa6c080ce2821232b4b66f1498e3", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 162": {"FileName": "./test/src/main/java/org/apache/fineract/cn/anubis/test/v1/TenantApplicationSecurityEnvironmentTestRule.java", "SPDXID": "SPDXRef-file-TenantApplicationSec-89b5-91648dda", "FileType": "SOURCE", "FileChecksum": "SHA256: 89b5e6272baa68a68ae6a6a53b591f1685c4b7443a0b538d08f28bd60c9f19c7", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-TenantApplicationSec-89b5-91648dda CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "File 163": {"FileName": "./travis.sh", "SPDXID": "SPDXRef-file-travis_sh-6c25-ae649a94", "FileType": "SOURCE", "FileChecksum": "SHA256: 6c25234b437214136f3efeae46b7bcc408cc0e77fa9b784839ded791b4543e8b", "LicenseConcluded": "NOASSERTION", "LicenseInfoInFile": "Apache-2.0", "LicenseComments": "", "FileCopyrightText": "NOASSERTION", "FileComment": "", "FileNotice": "", "File Relationship": "SPDXRef-file-travis_sh-6c25-ae649a94 CONTAINED_BY SPDXRef-package-fineract_cn_anubis-41ee-95796598"}}, "Package Relationships": {"Relationship 0": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-49e1-97cfbd49", "Relationship 1": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-061d-abf48eab", "Relationship 2": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisApiFactory_jav-70db-a57209af", "Relationship 3": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Anubis_java-eefa-941edce8", "Relationship 4": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AllowedOperation_jav-9853-a2a04fb0", "Relationship 5": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationSignature-bab0-a3d28964", "Relationship 6": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableEndpoint_-99d3-52aa6642", "Relationship 7": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Signature_java-11ac-fe10a423", "Relationship 8": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenContent_java-8f84-b1604a8e", "Relationship 9": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenPermission_java-39cb-c1dc5d32", "Relationship 10": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-RoleConstants_java-b90a-15b79259", "Relationship 11": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenConstants_java-4d49-b5462e84", "Relationship 12": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-CheckKeyTimestamp_ja-3b69-e61abe2b", "Relationship 13": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ValidKeyTimestamp_ja-08f2-30ea5bb3", "Relationship 14": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-CheckKeyTimestampTes-d028-bb2d587b", "Relationship 15": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-6ebe-7886854a", "Relationship 16": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-57f2-4b69b077", "Relationship 17": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-2308-4f3deade", "Relationship 18": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractNoInitialize-5407-b73cf653", "Relationship 19": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractNoKeyStorage-73a2-70c45b73", "Relationship 20": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AbstractSimpleTest_j-7900-5c9b0edd", "Relationship 21": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-ca75-d71d27f5", "Relationship 22": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-7046-7379a00e", "Relationship 23": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-d792-46b730b1", "Relationship 24": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UserContext_java-aeb5-4d4141da", "Relationship 25": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-fcc3-6232d8d4", "Relationship 26": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-10dd-522b4703", "Relationship 27": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-e99b-ec20ed7f", "Relationship 28": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SpecialTenantSignatu-df36-02ffd1c9", "Relationship 29": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleConfiguration-7608-96a4eb71", "Relationship 30": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Example_java-3049-d95febd6", "Relationship 31": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ExampleRestControlle-1b88-25a80fea", "Relationship 32": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-MetricsFeignClient_j-cc28-f30470de", "Relationship 33": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Metrics_java-4596-4fa8e6de", "Relationship 34": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SuiteTestEnvironment-0145-a6761987", "Relationship 35": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteNoInitializ-d82a-522d6219", "Relationship 36": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteNoKeyStorag-fea4-59fd5cf6", "Relationship 37": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSuiteSimple_java-434c-00329be8", "Relationship 38": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-2af4-8c707c18", "Relationship 39": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-7720-c38af656", "Relationship 40": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisInitialize-0121-cec2dd00", "Relationship 41": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisKeyRotatio-6b20-9fd53d12", "Relationship 42": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestAnubisTenantPerm-7c01-a810697b", "Relationship 43": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestPermittableEndpo-f626-5bb45f6c", "Relationship 44": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TestSystemToken_java-54e4-761dc95d", "Relationship 45": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-logback_xml-a6b5-4169e57a", "Relationship 46": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-config-4505-b39636df", "Relationship 47": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-description-85ab-efe80638", "Relationship 48": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-FETCH_HEAD-41eb-3a4ad8c0", "Relationship 49": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-8dd7-3509f093", "Relationship 50": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-applypatch_msg_sampl-0223-650f8e13", "Relationship 51": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-commit_msg_sample-1f74-5f8f8cdf", "Relationship 52": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-fsmonitor_watchman_s-7f9c-888c3e8b", "Relationship 53": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-post_update_sample-8176-1e615adf", "Relationship 54": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_applypatch_sampl-e15c-cf090967", "Relationship 55": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_commit_sample-d6d1-283147e8", "Relationship 56": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-prepare_commit_msg_s-e9dd-1d0df46a", "Relationship 57": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_push_sample-4b11-ae67edf8", "Relationship 58": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_rebase_sample-4feb-76d91af5", "Relationship 59": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pre_receive_sample-a4c3-f0e1fe3a", "Relationship 60": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-update_sample-751c-f24d4a8e", "Relationship 61": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-_gitignore-f185-f2501c25", "Relationship 62": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-index-d8b7-8c6d7613", "Relationship 63": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-exclude-6671-2366dad5", "Relationship 64": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-8d9c-eecd15bf", "Relationship 65": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-8d9c-dbcd3914", "Relationship 66": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-179c-283dcc1b", "Relationship 67": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-bde0-fe304737", "Relationship 68": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-9b2a6c89c5bdb7e04f11-3c87-3dcc46ff", "Relationship 69": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-dfd1f048c6234e6ed45c-a7d3-522fb264", "Relationship 70": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bfa59973528844c15f33-8077-fe76a541", "Relationship 71": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-9890249b035ff66203c8-f622-3e8f2a2e", "Relationship 72": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-227ca1f76895519f8cd6-6086-737b9d93", "Relationship 73": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-0541c738646a32121992-0131-a2667281", "Relationship 74": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-1e563ba777508c3b5e30-c698-6de4be1b", "Relationship 75": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bcb0f0beef93a4edab9b-d85e-a32b4e05", "Relationship 76": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-060ed59eadd81a2fb872-496e-423fcf21", "Relationship 77": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-18c95217c400d47a55cd-8cec-3717554f", "Relationship 78": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-bd4b10a9a3e82841e0ac-2b9b-1d13bc52", "Relationship 79": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-47a7d393044565832ecd-03de-7cf310e4", "Relationship 80": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-31c31a8ade86e34a4f7e-03e6-64ec4a37", "Relationship 81": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-39427a34646dcb8cd575-af7b-0b921e4c", "Relationship 82": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-fa96530dc44d7b5cfff6-0255-bd7213e5", "Relationship 83": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-336fcae912db8a11d556-18b7-fa75ba5e", "Relationship 84": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-8d5951413f5faf2fee43-590d-dbf931eb", "Relationship 85": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-f43aee0e066f6abb31e6-83fe-1bfd4e78", "Relationship 86": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ff3e02afa65792a9f22c-5d8d-a7d0ba69", "Relationship 87": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-d658044c4c693c7a9272-2f02-173db1b1", "Relationship 88": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-2568e90865b2b712eb20-aee6-4b05efe1", "Relationship 89": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-edcf6f8562217cfd6250-9a28-ac787ec1", "Relationship 90": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-cdd3d517fc5249beaefa-2491-3ccc1339", "Relationship 91": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-4330d47ada63d1bfe9e2-407a-ad1acb55", "Relationship 92": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-4b247024c5c6b45901ad-6b05-de1bb1ff", "Relationship 93": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-e2371767de07b62a77e5-ebd7-8c809634", "Relationship 94": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-b11f778ce6e6fbe0dcca-546a-7e61ef6d", "Relationship 95": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pack_70b91df528191bc-c5e2-893f4b39", "Relationship 96": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-pack_70b91df528191bc-aaa8-d4918936", "Relationship 97": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ORIG_HEAD-9746-9a92d77a", "Relationship 98": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-packed_refs-391c-7b0ae16a", "Relationship 99": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-9746-efaf18b4", "Relationship 100": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-develop-9746-287d86ec", "Relationship 101": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEAD-bda5-d198df9c", "Relationship 102": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradlew-8c4c-ff6b12aa", "Relationship 103": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradlew_bat-0008-4862acca", "Relationship 104": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradle_wrapper_jar-660a-1b0a2fb0", "Relationship 105": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-gradle_wrapper_prope-0419-6031525e", "Relationship 106": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-HEADER-f2f3-b7d79a87", "Relationship 107": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-1c0a-4811bb43", "Relationship 108": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-5399-268632aa", "Relationship 109": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AcceptedTokenType_ja-d976-fab8b1d5", "Relationship 110": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Permittable_java-f92d-00f4eeb8", "Relationship 111": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-Permittables_java-5bb6-85929b53", "Relationship 112": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisConfiguration_-c5f1-a97815b1", "Relationship 113": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisConstants_java-3477-82f77f2c", "Relationship 114": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisImportSelector-00da-bd438313", "Relationship 115": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisProperties_jav-92c4-9ee8afac", "Relationship 116": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisSecurityConfig-0d69-65e7b810", "Relationship 117": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-EnableAnubis_java-6913-9438c97b", "Relationship 118": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantSignatureRepos-6c67-c15729ad", "Relationship 119": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-EmptyInitializeResou-cf04-10175772", "Relationship 120": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableRestContr-bbc5-f1f04a5d", "Relationship 121": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SignatureCreatorRest-f2a6-b9d03eb6", "Relationship 122": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SignatureRestControl-2242-c2dfa47a", "Relationship 123": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-IsisAuthenticatedPro-ac4c-b67f13da", "Relationship 124": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UserContextFilter_ja-3470-5542cb26", "Relationship 125": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-InvalidKeyTimestampE-6c8b-15ac38dd", "Relationship 126": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemRsaKeyProvider-187f-b716d7a8", "Relationship 127": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRsaKeyProvider-8ca8-50d6720c", "Relationship 128": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAuthorizationD-07d4-b4b45b36", "Relationship 129": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AmitAuthenticationEx-be67-5e9c62d4", "Relationship 130": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisAuthentication-ff86-573396e6", "Relationship 131": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-AnubisPrincipal_java-38fd-c85d7bf2", "Relationship 132": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationPermissio-793a-6121eea7", "Relationship 133": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-GuestAuthenticator_j-8952-55032a59", "Relationship 134": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-IsisAuthenticatedAut-91b3-cfc462bf", "Relationship 135": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAuthenticator_-1971-93a0d900", "Relationship 136": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAuthenticator_-831f-be7e2c69", "Relationship 137": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenInfo_java-fc2a-94074cc8", "Relationship 138": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-UrlPermissionChecker-37e9-f80973f9", "Relationship 139": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermissionSegmentMat-9dfa-53b9093e", "Relationship 140": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-PermittableService_j-6cbb-f8a99237", "Relationship 141": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAccessTokenSer-cafc-5080001a", "Relationship 142": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAccessTokenSer-ad21-c6845356", "Relationship 143": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantApplicationRsa-47a9-09ef0560", "Relationship 144": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRefreshTokenSe-7fcc-b54581e7", "Relationship 145": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenDeserialization-ccb5-a4cf8e8c", "Relationship 146": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenSerializationRe-d52e-273d6650", "Relationship 147": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenType_java-a9b2-7fe86cab", "Relationship 148": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-ApplicationPermissio-7555-44e2e6c5", "Relationship 149": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemAccessTokenSer-1202-01890c06", "Relationship 150": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantAccessTokenSer-2516-1f97677e", "Relationship 151": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantRefreshTokenSe-1018-fd88102d", "Relationship 152": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TokenTypeTest_java-84d9-4a10baec", "Relationship 153": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-LICENSE-b409-f02edb2c", "Relationship 154": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-NOTICE_txt-1f6f-54796365", "Relationship 155": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-README_md-021c-6d24c2c7", "Relationship 156": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-7ef2-5591dd84", "Relationship 157": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-shared_gradle-b132-604f237f", "Relationship 158": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-build_gradle-c025-7530da98", "Relationship 159": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-settings_gradle-7e17-aaa431d5", "Relationship 160": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-SystemSecurityEnviro-b8b4-afdaae46", "Relationship 161": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-TenantApplicationSec-89b5-91648dda", "Relationship 162": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-travis_sh-6c25-ae649a94", "Relationship 163": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-file-_travis_yml-f26b-49aa582b", "Relationship 164": "SPDXRef-DOCUMENT DESCRIBES SPDXRef-package-fineract_cn_anubis-41ee-95796598"}, "License Coverage": {"TotalFiles": "164", "DeclaredLicenseFiles": "102", "PercentTotalLicenseCoverage": "62.20%"}} \ No newline at end of file diff --git a/util/scripts/install/install-spdx.sh b/util/scripts/install/install-spdx.sh new file mode 100644 index 0000000000..5088a54051 --- /dev/null +++ b/util/scripts/install/install-spdx.sh @@ -0,0 +1,16 @@ +#!/bin/bash +cd spdx-scanner/ +if [ ! -d "augur-spdx/" ] +then + echo "Augur-SPDX has not been cloned" + echo "Cloning it now..." + git clone https://github.com/chaoss/augur-spdx.git augur-spdx +else + echo "Augur-SPDX exists" +fi +cd augur-spdx +sudo apt-get install git python3-pip postgresql +sudo apt-get install libpq-dev +sudo apt-get install libglib2.0-dev libjsoncpp-dev libjson-c-dev +pip3 install . +./scripts/install-nomos.sh diff --git a/spdx-scanner/3.0.tag b/workers/spdx_worker/3.0.tag similarity index 100% rename from spdx-scanner/3.0.tag rename to workers/spdx_worker/3.0.tag diff --git a/workers/spdx_worker/README.md b/workers/spdx_worker/README.md new file mode 100644 index 0000000000..6c822d50c7 --- /dev/null +++ b/workers/spdx_worker/README.md @@ -0,0 +1,2 @@ +# augur_sbom_scanner +This is the augur-SPDX worker. It is still in development. diff --git a/spdx-scanner/TODO.md b/workers/spdx_worker/TODO.md similarity index 100% rename from spdx-scanner/TODO.md rename to workers/spdx_worker/TODO.md diff --git a/spdx-scanner/director.py b/workers/spdx_worker/director.py similarity index 94% rename from spdx-scanner/director.py rename to workers/spdx_worker/director.py index 7176198cde..1fc6703a6c 100644 --- a/spdx-scanner/director.py +++ b/workers/spdx_worker/director.py @@ -10,7 +10,7 @@ import initial_scans as s if __name__ == "__main__": - with open("../augur.config.json") as json_file: + with open("../../augur.config.json") as json_file: config = json.load(json_file) dbname = config["Database"]["database"] user = config["Database"]["name"] @@ -26,6 +26,7 @@ with open("dosocs2-example.conf") as configfile: content = configfile.read() + print(content) content_new = re.sub('(connection_uri = .*)\n', "connection_uri = " + configtools + "\n", content) with open("dosocs2.conf","w+") as outfile: outfile.write(content_new) diff --git a/spdx-scanner/dosocs2-example.conf b/workers/spdx_worker/dosocs2-example.conf similarity index 96% rename from spdx-scanner/dosocs2-example.conf rename to workers/spdx_worker/dosocs2-example.conf index 34b89a444b..85dce4f6ff 100644 --- a/spdx-scanner/dosocs2-example.conf +++ b/workers/spdx_worker/dosocs2-example.conf @@ -1,7 +1,7 @@ # dosocs2 configuration file # Example uri -connection_uri = +connection_uri = {Fill in here} # Schema to be used with postgresql schema = spdx diff --git a/spdx-scanner/2.0.tag.coverage b/workers/spdx_worker/extra_tagfiles/2.0.tag.coverage similarity index 100% rename from spdx-scanner/2.0.tag.coverage rename to workers/spdx_worker/extra_tagfiles/2.0.tag.coverage diff --git a/spdx-scanner/2.0.tag.short.nofiles b/workers/spdx_worker/extra_tagfiles/2.0.tag.short.nofiles similarity index 100% rename from spdx-scanner/2.0.tag.short.nofiles rename to workers/spdx_worker/extra_tagfiles/2.0.tag.short.nofiles diff --git a/spdx-scanner/initial_scans.py b/workers/spdx_worker/initial_scans.py similarity index 100% rename from spdx-scanner/initial_scans.py rename to workers/spdx_worker/initial_scans.py diff --git a/spdx-scanner/mac-notes.md b/workers/spdx_worker/mac-notes.md similarity index 100% rename from spdx-scanner/mac-notes.md rename to workers/spdx_worker/mac-notes.md diff --git a/spdx-scanner/sbom_populate.py b/workers/spdx_worker/sbom_populate.py similarity index 100% rename from spdx-scanner/sbom_populate.py rename to workers/spdx_worker/sbom_populate.py From b891b31568c2827372ba397f4e165b39fd2c72dc Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Thu, 5 Dec 2019 13:00:40 -0600 Subject: [PATCH 130/250] SPDX Worker Config Notes. --- augur-spdx-worker.json | 177 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 177 insertions(+) create mode 100644 augur-spdx-worker.json diff --git a/augur-spdx-worker.json b/augur-spdx-worker.json new file mode 100644 index 0000000000..65ecbb0784 --- /dev/null +++ b/augur-spdx-worker.json @@ -0,0 +1,177 @@ +{ + "Cache": { + "config": { + "cache.data_dir": "runtime/cache/", + "cache.lock_dir": "runtime/cache/", + "cache.type": "file" + } + }, + "Database": { + "connection_string": "sqlite:///:memory:", + "database": "augur_goggins_three", + "host": "mudcats.augurlabs.io", + "key": "ec050828ccc3b1e490777913d010affb352565d0", + "password": "mcguire18", + "port": "5433", + "schema": "augur_data", + "user": "augur" + }, + "Development": { + "developer": "0", + "interactive": "0" + }, + "Facade": { + "check_updates": 1, + "clone_repos": 1, + "create_xlsx_summary_files": 1, + "delete_marked_repos": 0, + "fix_affiliations": 1, + "force_analysis": 1, + "force_invalidate_caches": 0, + "force_updates": 1, + "limited_run": 0, + "multithreaded": 0, + "nuke_stored_affiliations": 0, + "pull_repos": 1, + "rebuild_caches": 1, + "run_analysis": 1 + }, + "GitHub": { + "apikey": "ec050828ccc3b1e490777913d010affb352565d0" + }, + "Housekeeper": { + "jobs": [ + { + "delay": 150000, + "given": [ + "github_url" + ], + "model": "issues", + "repo_group_id": 0, + "repos": [ + { + "repo_git": "https://github.com/chaoss/augur.git", + "repo_id": 25430 + }, + { + "repo_git": "https://github.com/chaoss/grimoirelab.git", + "repo_id": 25431 + }, + { + "repo_git": "https://github.com/chaoss/wg-evolution.git", + "repo_id": 25432 + }, + { + "repo_git": "https://github.com/chaoss/wg-risk.git", + "repo_id": 25433 + }, + { + "repo_git": "https://github.com/chaoss/wg-common.git", + "repo_id": 25434 + } + ] + }, + { + "delay": 150000, + "given": [ + "github_url" + ], + "model": "repo_info", + "repo_group_id": 0, + "repos": [ + { + "repo_git": "https://github.com/chaoss/augur.git", + "repo_id": 25430 + }, + { + "repo_git": "https://github.com/chaoss/grimoirelab.git", + "repo_id": 25431 + }, + { + "repo_git": "https://github.com/chaoss/wg-evolution.git", + "repo_id": 25432 + }, + { + "repo_git": "https://github.com/chaoss/wg-risk.git", + "repo_id": 25433 + }, + { + "repo_git": "https://github.com/chaoss/wg-common.git", + "repo_id": 25434 + } + ] + }, + { + "delay": 150000, + "given": [ + "github_url" + ], + "model": "pull_requests", + "repo_group_id": 0, + "repos": [ + { + "repo_git": "https://github.com/chaoss/augur.git", + "repo_id": 25430 + }, + { + "repo_git": "https://github.com/chaoss/grimoirelab.git", + "repo_id": 25431 + }, + { + "repo_git": "https://github.com/chaoss/wg-evolution.git", + "repo_id": 25432 + }, + { + "repo_git": "https://github.com/chaoss/wg-risk.git", + "repo_id": 25433 + }, + { + "repo_git": "https://github.com/chaoss/wg-common.git", + "repo_id": 25434 + } + ] + } + ] + }, + "Plugins": [], + "Server": { + "cache_expire": "3600", + "host": "0.0.0.0", + "port": "5000", + "workers": "4" + }, + "Workers": { + "facade_worker": { + "port": 51246, + "repo_directory": "$HOME/augur_repos/", + "switch": 0, + "workers": 1 + }, + "github_worker": { + "port": 51238, + "switch": 0, + "workers": 1 + }, + "insight_worker": { + "port": 51244, + "switch": 0, + "workers": 1 + }, + "pull_request_worker": { + "port": 51252, + "switch": 0, + "workers": 1 + }, + "repo_info_worker": { + "port": 51242, + "switch": 0, + "workers": 1 + }, + "license_worker": { + "port": 51242, + "switch": 0, + "workers": 1, + "tagfile": "3.0.tag" + } + } +} From 5ce5306f6a3727c4c2a094c65bffcde91c8de799 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Thu, 5 Dec 2019 16:46:04 -0600 Subject: [PATCH 131/250] Add badge worker block to install-generated config Signed-off-by: Carter Landis --- util/scripts/install/make_config.py | 46 +++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/util/scripts/install/make_config.py b/util/scripts/install/make_config.py index a5e87ac789..730f069ce8 100644 --- a/util/scripts/install/make_config.py +++ b/util/scripts/install/make_config.py @@ -72,41 +72,61 @@ def configure_defaults(config): config['Housekeeper'] = { "jobs": [ { - "delay": 150000, - "given": ["github_url"], - "model": "issues", - "repo_group_id": 0, - "all_focused": 1 + "all_focused": 1, + "delay": 150000, + "given": [ + "github_url" + ], + "model": "issues", + "repo_group_id": 0 }, { - "model": "repo_info", - "given": ["github_url"], "delay": 150000, + "given": [ + "github_url" + ], + "model": "repo_info", "repo_group_id": 0 }, { - "model": "commits", - "given": ["repo_group"], "delay": 150000, + "given": [ + "repo_group" + ], + "model": "commits", "repo_group_id": 0 }, { - "model": "pull_requests", - "given": ["github_url"], "delay": 1000000, + "given": [ + "github_url" + ], + "model": "pull_requests", "repo_group_id": 0 }, { "delay": 1000000, - "given": ["github_url"], + "given": [ + "github_url" + ], "model": "contributors", "repo_group_id": 0 }, { "delay": 1000000, - "given": ["git_url"], + "given": [ + "git_url" + ], "model": "insights", "repo_group_id": 0 + }, + { + "delay": 1000000, + "given": [ + "git_url" + ], + "model": "badges", + "repo_group_id": 0 } ] } From f0cf913fed29d18ca740b7a49647d9719fee751e Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 5 Dec 2019 23:12:14 +0000 Subject: [PATCH 132/250] updates to put sudo commands in a special file --- Makefile | 3 +++ util/scripts/install/install-spdx-sudo.sh | 3 +++ util/scripts/install/install-spdx.sh | 3 --- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100755 util/scripts/install/install-spdx-sudo.sh mode change 100644 => 100755 util/scripts/install/install-spdx.sh diff --git a/Makefile b/Makefile index f26034b169..013265db3d 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,9 @@ install: install-spdx: @ ./util/scripts/install/install-spdx.sh +install-spdx-sudo: + @ ./util/scripts/install/install-spdx-sudo.sh + install-augur-sbom: @ ./util/scripts/install/nomos.sh diff --git a/util/scripts/install/install-spdx-sudo.sh b/util/scripts/install/install-spdx-sudo.sh new file mode 100755 index 0000000000..6bea8a3abf --- /dev/null +++ b/util/scripts/install/install-spdx-sudo.sh @@ -0,0 +1,3 @@ +#!/bin/bash +sudo apt-get install libpq-dev +sudo apt-get install libglib2.0-dev libjsoncpp-dev libjson-c-dev diff --git a/util/scripts/install/install-spdx.sh b/util/scripts/install/install-spdx.sh old mode 100644 new mode 100755 index 5088a54051..2aa6e7a458 --- a/util/scripts/install/install-spdx.sh +++ b/util/scripts/install/install-spdx.sh @@ -9,8 +9,5 @@ else echo "Augur-SPDX exists" fi cd augur-spdx -sudo apt-get install git python3-pip postgresql -sudo apt-get install libpq-dev -sudo apt-get install libglib2.0-dev libjsoncpp-dev libjson-c-dev pip3 install . ./scripts/install-nomos.sh From b6fc6e276089a09c3fe91de646f34033dee3aa9b Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Thu, 5 Dec 2019 23:19:41 +0000 Subject: [PATCH 133/250] director.py update to augur.config.json variables --- workers/spdx_worker/director.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workers/spdx_worker/director.py b/workers/spdx_worker/director.py index 1fc6703a6c..eb6e03bc5d 100644 --- a/workers/spdx_worker/director.py +++ b/workers/spdx_worker/director.py @@ -13,7 +13,7 @@ with open("../../augur.config.json") as json_file: config = json.load(json_file) dbname = config["Database"]["database"] - user = config["Database"]["name"] + user = config["Database"]["user"] password = config["Database"]["password"] host = config["Database"]["host"] port = config["Database"]["port"] @@ -34,8 +34,8 @@ print("---------------------") print("INITIAL SCANS RUNNING") print("---------------------") - #s.scan(dbname, user, password, host, port, dsfile, ipath) + s.scan(dbname, user, password, host, port, dsfile, ipath) print("------------------") print("SBOM SCANS RUNNING") print("------------------") - #p.scan(dbname, user, password, host, port, dsfile, ipath) + p.scan(dbname, user, password, host, port, dsfile, ipath) From a8ce07f330d965b74a90d1671380793a8941578b Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Fri, 6 Dec 2019 10:01:21 -0600 Subject: [PATCH 134/250] Update install-spdx.sh Signed-off-by: Matt Snell --- util/scripts/install/install-spdx.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/scripts/install/install-spdx.sh b/util/scripts/install/install-spdx.sh index 2aa6e7a458..e3d2ba153b 100755 --- a/util/scripts/install/install-spdx.sh +++ b/util/scripts/install/install-spdx.sh @@ -1,5 +1,5 @@ #!/bin/bash -cd spdx-scanner/ +cd workers/spdx_worker/ if [ ! -d "augur-spdx/" ] then echo "Augur-SPDX has not been cloned" @@ -11,3 +11,6 @@ fi cd augur-spdx pip3 install . ./scripts/install-nomos.sh +cd .. +pwd +rm -r augur-spdx From aaeb776f691a68f228b6916c4a3467c99cb2d534 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Fri, 6 Dec 2019 11:48:34 -0600 Subject: [PATCH 135/250] Release Notes Update. --- release_notes.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index 09f455b422..35b0fe135e 100644 --- a/release_notes.md +++ b/release_notes.md @@ -5,7 +5,7 @@ 2. Users may need to create a new virtualenv. Not sure why. I build master then switched to dev and it didn't work until I blew away my virtual environment and recreated it. 3. There are now 2 schema update scripts that I have added to the installer. We need to include a status check for the schema version. 4. Need to make some notes about postgres configuration for performance on large sets of data -5. Frontend configuration block, which should be an external hostname, and not 0.0.0.0 +5. Frontend configuration block, which should be an external hostname, and not 0.0.0.0 ``` "Frontend": { "host": "0.0.0.0", @@ -25,6 +25,15 @@ "tagfile": "3.0.tag" } ``` +9. Add the housekeeper task for the linux badge worker: +``` +{ + "model": "badges", + "given": ["git_url"], + "delay": 150000, + "repo_group_id": 0 + } +``` From f68096a5d487de0e0252539fb17270ca60422e7f Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sat, 7 Dec 2019 08:14:20 -0600 Subject: [PATCH 136/250] Fixing issue in commits --- augur-spdx-worker.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/augur-spdx-worker.json b/augur-spdx-worker.json index 65ecbb0784..665d161b3d 100644 --- a/augur-spdx-worker.json +++ b/augur-spdx-worker.json @@ -10,8 +10,8 @@ "connection_string": "sqlite:///:memory:", "database": "augur_goggins_three", "host": "mudcats.augurlabs.io", - "key": "ec050828ccc3b1e490777913d010affb352565d0", - "password": "mcguire18", + "key": "xxxxxxx", + "password": "xxxxx", "port": "5433", "schema": "augur_data", "user": "augur" @@ -37,7 +37,7 @@ "run_analysis": 1 }, "GitHub": { - "apikey": "ec050828ccc3b1e490777913d010affb352565d0" + "apikey": "xxxxxxxxxx" }, "Housekeeper": { "jobs": [ @@ -168,7 +168,7 @@ "workers": 1 }, "license_worker": { - "port": 51242, + "port": 51333, "switch": 0, "workers": 1, "tagfile": "3.0.tag" From 581a183a0956f893950b3c5c14d2006a0913d10b Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sat, 7 Dec 2019 08:14:59 -0600 Subject: [PATCH 137/250] Another fix. --- augur-spdx-worker.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/augur-spdx-worker.json b/augur-spdx-worker.json index 665d161b3d..8aa5db03d0 100644 --- a/augur-spdx-worker.json +++ b/augur-spdx-worker.json @@ -7,14 +7,14 @@ } }, "Database": { - "connection_string": "sqlite:///:memory:", - "database": "augur_goggins_three", + "connection_string": "xxxx:///:memory:", + "database": "xxxxx", "host": "mudcats.augurlabs.io", "key": "xxxxxxx", "password": "xxxxx", - "port": "5433", - "schema": "augur_data", - "user": "augur" + "port": "xx", + "schema": "xxxxx", + "user": "xx" }, "Development": { "developer": "0", From a0cef66c37dd4d6d65221681fb2510ddbfbe802d Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Sat, 7 Dec 2019 08:15:29 -0600 Subject: [PATCH 138/250] Deleting file. --- augur-spdx-worker.json | 177 ----------------------------------------- 1 file changed, 177 deletions(-) delete mode 100644 augur-spdx-worker.json diff --git a/augur-spdx-worker.json b/augur-spdx-worker.json deleted file mode 100644 index 8aa5db03d0..0000000000 --- a/augur-spdx-worker.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "Cache": { - "config": { - "cache.data_dir": "runtime/cache/", - "cache.lock_dir": "runtime/cache/", - "cache.type": "file" - } - }, - "Database": { - "connection_string": "xxxx:///:memory:", - "database": "xxxxx", - "host": "mudcats.augurlabs.io", - "key": "xxxxxxx", - "password": "xxxxx", - "port": "xx", - "schema": "xxxxx", - "user": "xx" - }, - "Development": { - "developer": "0", - "interactive": "0" - }, - "Facade": { - "check_updates": 1, - "clone_repos": 1, - "create_xlsx_summary_files": 1, - "delete_marked_repos": 0, - "fix_affiliations": 1, - "force_analysis": 1, - "force_invalidate_caches": 0, - "force_updates": 1, - "limited_run": 0, - "multithreaded": 0, - "nuke_stored_affiliations": 0, - "pull_repos": 1, - "rebuild_caches": 1, - "run_analysis": 1 - }, - "GitHub": { - "apikey": "xxxxxxxxxx" - }, - "Housekeeper": { - "jobs": [ - { - "delay": 150000, - "given": [ - "github_url" - ], - "model": "issues", - "repo_group_id": 0, - "repos": [ - { - "repo_git": "https://github.com/chaoss/augur.git", - "repo_id": 25430 - }, - { - "repo_git": "https://github.com/chaoss/grimoirelab.git", - "repo_id": 25431 - }, - { - "repo_git": "https://github.com/chaoss/wg-evolution.git", - "repo_id": 25432 - }, - { - "repo_git": "https://github.com/chaoss/wg-risk.git", - "repo_id": 25433 - }, - { - "repo_git": "https://github.com/chaoss/wg-common.git", - "repo_id": 25434 - } - ] - }, - { - "delay": 150000, - "given": [ - "github_url" - ], - "model": "repo_info", - "repo_group_id": 0, - "repos": [ - { - "repo_git": "https://github.com/chaoss/augur.git", - "repo_id": 25430 - }, - { - "repo_git": "https://github.com/chaoss/grimoirelab.git", - "repo_id": 25431 - }, - { - "repo_git": "https://github.com/chaoss/wg-evolution.git", - "repo_id": 25432 - }, - { - "repo_git": "https://github.com/chaoss/wg-risk.git", - "repo_id": 25433 - }, - { - "repo_git": "https://github.com/chaoss/wg-common.git", - "repo_id": 25434 - } - ] - }, - { - "delay": 150000, - "given": [ - "github_url" - ], - "model": "pull_requests", - "repo_group_id": 0, - "repos": [ - { - "repo_git": "https://github.com/chaoss/augur.git", - "repo_id": 25430 - }, - { - "repo_git": "https://github.com/chaoss/grimoirelab.git", - "repo_id": 25431 - }, - { - "repo_git": "https://github.com/chaoss/wg-evolution.git", - "repo_id": 25432 - }, - { - "repo_git": "https://github.com/chaoss/wg-risk.git", - "repo_id": 25433 - }, - { - "repo_git": "https://github.com/chaoss/wg-common.git", - "repo_id": 25434 - } - ] - } - ] - }, - "Plugins": [], - "Server": { - "cache_expire": "3600", - "host": "0.0.0.0", - "port": "5000", - "workers": "4" - }, - "Workers": { - "facade_worker": { - "port": 51246, - "repo_directory": "$HOME/augur_repos/", - "switch": 0, - "workers": 1 - }, - "github_worker": { - "port": 51238, - "switch": 0, - "workers": 1 - }, - "insight_worker": { - "port": 51244, - "switch": 0, - "workers": 1 - }, - "pull_request_worker": { - "port": 51252, - "switch": 0, - "workers": 1 - }, - "repo_info_worker": { - "port": 51242, - "switch": 0, - "workers": 1 - }, - "license_worker": { - "port": 51333, - "switch": 0, - "workers": 1, - "tagfile": "3.0.tag" - } - } -} From dc4c708e25f2f8ded98e9948553c2cd68fc9eb04 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 7 Dec 2019 11:22:50 -0600 Subject: [PATCH 139/250] release notes update. --- release_notes.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/release_notes.md b/release_notes.md index 35b0fe135e..4b9aee4b3d 100644 --- a/release_notes.md +++ b/release_notes.md @@ -12,10 +12,11 @@ "port": "5002" }, ``` -6. `git config merge.renameLimit 999999999` lets your facade worker move files when there are large reorganizations in some of your projects -7. Sometimes when a repository moves, github will ask you for credentials. This caches them so your facade worker keeps runnign - - `git config --global credential.helper cache` - - `git config --global credential.helper 'cache --timeout=600000000000000'` +6. Put these in the facade worker startup: + - `git config --global merge.renameLimit 999999999` lets your facade worker move files when there are large reorganizations in some of your projects + - Sometimes when a repository moves, github will ask you for credentials. This caches them so your facade worker keeps running + - `git config --global credential.helper cache` + - `git config --global credential.helper 'cache --timeout=600000000000000'` 8. augur-spdx worker block will be needed : ``` "license_worker": { @@ -27,7 +28,7 @@ ``` 9. Add the housekeeper task for the linux badge worker: ``` -{ + { "model": "badges", "given": ["git_url"], "delay": 150000, From d32d7bfe917007ca5bccb664e3f02300ba3f0132 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 7 Dec 2019 11:29:03 -0600 Subject: [PATCH 140/250] Add frontend & license worker to default config Signed-off-by: Carter Landis --- util/scripts/install/make_config.py | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/util/scripts/install/make_config.py b/util/scripts/install/make_config.py index 730f069ce8..8949ddb6af 100644 --- a/util/scripts/install/make_config.py +++ b/util/scripts/install/make_config.py @@ -68,17 +68,25 @@ def configure_defaults(config): config['Plugins'] = [] print("Set default values for Plugins...") + if not 'Frontend' in config: + config['Frontends'] = { + "Frontend": { + "host": "0.0.0.0", + "port": "5000" + } + } + if not 'Housekeeper' in config: config['Housekeeper'] = { "jobs": [ { - "all_focused": 1, - "delay": 150000, - "given": [ - "github_url" - ], - "model": "issues", - "repo_group_id": 0 + "focused_task": 1, + "delay": 150000, + "given": [ + "github_url" + ], + "model": "issues", + "repo_group_id": 0 }, { "delay": 150000, @@ -182,9 +190,9 @@ def configure_workers(config, credentials): "workers": 1 }, "license_worker": { - "port": 51242, - "switch": 0, - "workers": 1, + "port": 51242, + "switch": 0, + "workers": 1, "tagfile": "3.0.tag" } } From cdd4732fd9b7bf34fecb77f3b8707a180d4aa23e Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 7 Dec 2019 11:58:18 -0600 Subject: [PATCH 141/250] release note update. --- release_notes.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index 4b9aee4b3d..9b45c74af0 100644 --- a/release_notes.md +++ b/release_notes.md @@ -37,4 +37,10 @@ ``` - +## First Collection notes: +1. Run facade worker first. +2. Run contributors model of github worker (and issues model is ok) +3. Key point: Run facade worker BEFORE the contributors model of the GitHub worker for optimal identity resolution. + + + From 7be5cfb1f9a1ea60073770658ee2279e8b66417b Mon Sep 17 00:00:00 2001 From: "Goggins, Sean Patrick" Date: Sun, 8 Dec 2019 07:06:50 -0600 Subject: [PATCH 142/250] release notes update --- release_notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/release_notes.md b/release_notes.md index 9b45c74af0..368f1e5890 100644 --- a/release_notes.md +++ b/release_notes.md @@ -42,5 +42,10 @@ 2. Run contributors model of github worker (and issues model is ok) 3. Key point: Run facade worker BEFORE the contributors model of the GitHub worker for optimal identity resolution. +## Server Configuration Notes +1. include nginx instructions +2. include EC2 instructions + + From 24d66ca74113578a77e4cafa9f94ee74f829753f Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Wed, 11 Dec 2019 16:47:00 -0600 Subject: [PATCH 143/250] Hotfixes for Risk Page Includes some requested fixes for the Risk page and APIs. Signed-off-by: Matt Snell --- augur/metrics/repo_meta/repo_meta.py | 24 +++++++++++-------- .../src/components/charts/DownloadCard.vue | 2 +- .../src/components/charts/LicenseTable.vue | 4 +++- frontend/src/components/charts/OsiCard.vue | 18 ++++++-------- 4 files changed, 25 insertions(+), 23 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 3915d35a1d..251394ffab 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -324,8 +324,8 @@ def license_files(self, license_id, spdx_binary, repo_group_id, repo_id=None,): repo_name_list = None license_data_SQL = s.sql.text(""" - SELECT A - .license_id as the_license_id, b.short_name as short_name, f.file_name + SELECT DISTINCT + A.license_id as the_license_id, b.short_name as short_name, f.file_name FROM files_licenses A, licenses b, augur_repo_map C, packages d, files e, packages_files f @@ -364,20 +364,22 @@ def license_declared(self, repo_group_id, repo_id=None): (SELECT A .license_id as the_license_id, b.short_name as short_name, - COUNT ( * ) + COUNT ( DISTINCT f.file_name ) FROM files_licenses A, licenses b, augur_repo_map C, packages d, - files e + files e, + packages_files f WHERE A.license_id = b.license_id AND d.package_id = C.dosocs_pkg_id AND e.file_id = A.file_id + AND e.file_id = f.file_id AND e.package_id = d.package_id - AND C.repo_id = :repo_id - AND b.is_spdx_official = 't' + AND C.repo_id = 25158 + AND b.is_spdx_official = 'True' GROUP BY the_license_id, b.short_name @@ -385,20 +387,22 @@ def license_declared(self, repo_group_id, repo_id=None): SELECT 500 as the_license_id, 'No Assertion' as short_name, - COUNT ( * ) + COUNT ( DISTINCT f.file_name ) FROM files_licenses A, licenses b, augur_repo_map C, packages d, - files e + files e, + packages_files f WHERE A.license_id = b.license_id AND d.package_id = C.dosocs_pkg_id AND e.file_id = A.file_id + AND e.file_id = f.file_id AND e.package_id = d.package_id - AND C.repo_id = :repo_id - AND b.is_spdx_official = 'f' + AND C.repo_id = 25158 + AND b.is_spdx_official = 'False' GROUP BY the_license_id, short_name) L diff --git a/frontend/src/components/charts/DownloadCard.vue b/frontend/src/components/charts/DownloadCard.vue index 19166fac81..857a0cffed 100644 --- a/frontend/src/components/charts/DownloadCard.vue +++ b/frontend/src/components/charts/DownloadCard.vue @@ -3,7 +3,7 @@

There is no SBOM download available for this repository.

diff --git a/frontend/src/components/charts/LicenseTable.vue b/frontend/src/components/charts/LicenseTable.vue index 68aa689d5d..feb5326603 100644 --- a/frontend/src/components/charts/LicenseTable.vue +++ b/frontend/src/components/charts/LicenseTable.vue @@ -71,6 +71,7 @@ linfoF: function () { // @ts-ignore let type = window.performance.getEntriesByType("navigation")[0].type + console.log(type) let repoID = null; let groupID = null; let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); @@ -94,7 +95,7 @@ let link = document.createElement('a'); link.setAttribute('href', uriContent); if (type === "reload") { - link.setAttribute('download', Object.keys(apiData)[0] + "." + res[0].short_name + ".files.json"); + link.setAttribute('download', Object.keys(apiData)[0] + ".NOASSERTION.files.json"); } else { link.setAttribute('download', Object.keys(apiData)[1] + ".NOASSERTION.files.json"); } @@ -105,6 +106,7 @@ linfo: function (license_id) { // @ts-ignore let type = window.performance.getEntriesByType("navigation")[0].type + console.log(type) let repoID = null; let groupID = null; let apiData = JSON.parse(JSON.stringify(this.$store.state.common.apiRepos)); diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue index 4a7844de91..4e85f926ea 100644 --- a/frontend/src/components/charts/OsiCard.vue +++ b/frontend/src/components/charts/OsiCard.vue @@ -4,19 +4,15 @@

{{ OSIpercent[0] }}%

-

- OSI Approved: +


+ OSI Approved: {{ OSIpercent[1] }} Files - {{ OSIpercent[1] }} -
- Not OSI Approved: +
View Approved Licenses +

+ Not OSI Approved: {{ OSIpercent[2] }} - {{ OSIpercent[2] }} -
- Total: - - {{ OSIpercent[3] }} -
+
View Non-Approved licenses +

From 90de12aa794ad7bade3e02d20c27b1e030494cc9 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 14 Dec 2019 10:25:13 +0900 Subject: [PATCH 144/250] added value worker housekeeper block to release notes. --- release_notes.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/release_notes.md b/release_notes.md index 368f1e5890..d161757096 100644 --- a/release_notes.md +++ b/release_notes.md @@ -26,7 +26,7 @@ "tagfile": "3.0.tag" } ``` -9. Add the housekeeper task for the linux badge worker: +9. Add the housekeeper task for these workers: ``` { "model": "badges", @@ -35,6 +35,13 @@ "repo_group_id": 0 } + + { + "model": "value", + "delay": 100000, + "given": ["git_url"], + "repo_group_id": 0 + } ``` ## First Collection notes: From 270e30e36eaeb494f0e3bbbb26cb08803cf07c71 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sat, 14 Dec 2019 11:49:22 +0900 Subject: [PATCH 145/250] update to augur spdx schema to simply installation. Now includes initialization of reference data for the augur-spdx project. --- persistence_schema/4-spdx.sql | 479 +++++++++++++++++++++++++++++++--- 1 file changed, 442 insertions(+), 37 deletions(-) diff --git a/persistence_schema/4-spdx.sql b/persistence_schema/4-spdx.sql index d44587718f..9bfe5809ec 100644 --- a/persistence_schema/4-spdx.sql +++ b/persistence_schema/4-spdx.sql @@ -6,7 +6,7 @@ CREATE SEQUENCE "spdx"."annotation_types_annotation_type_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."annotation_types_annotation_type_id_seq" OWNER TO "augur"; @@ -18,7 +18,7 @@ CREATE SEQUENCE "spdx"."annotations_annotation_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."annotations_annotation_id_seq" OWNER TO "augur"; @@ -30,7 +30,7 @@ CREATE SEQUENCE "spdx"."augur_repo_map_map_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."augur_repo_map_map_id_seq" OWNER TO "augur"; @@ -42,7 +42,7 @@ CREATE SEQUENCE "spdx"."creator_types_creator_type_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."creator_types_creator_type_id_seq" OWNER TO "augur"; @@ -54,7 +54,7 @@ CREATE SEQUENCE "spdx"."creators_creator_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."creators_creator_id_seq" OWNER TO "augur"; @@ -66,7 +66,7 @@ CREATE SEQUENCE "spdx"."document_namespaces_document_namespace_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."document_namespaces_document_namespace_id_seq" OWNER TO "augur"; @@ -78,7 +78,7 @@ CREATE SEQUENCE "spdx"."documents_creators_document_creator_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."documents_creators_document_creator_id_seq" OWNER TO "augur"; @@ -90,7 +90,7 @@ CREATE SEQUENCE "spdx"."documents_document_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."documents_document_id_seq" OWNER TO "augur"; @@ -102,7 +102,7 @@ CREATE SEQUENCE "spdx"."external_refs_external_ref_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."external_refs_external_ref_id_seq" OWNER TO "augur"; @@ -114,7 +114,7 @@ CREATE SEQUENCE "spdx"."file_contributors_file_contributor_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."file_contributors_file_contributor_id_seq" OWNER TO "augur"; @@ -126,7 +126,7 @@ CREATE SEQUENCE "spdx"."file_types_file_type_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."file_types_file_type_id_seq" OWNER TO "augur"; @@ -138,7 +138,7 @@ CREATE SEQUENCE "spdx"."files_file_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."files_file_id_seq" OWNER TO "augur"; @@ -150,7 +150,7 @@ CREATE SEQUENCE "spdx"."files_licenses_file_license_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."files_licenses_file_license_id_seq" OWNER TO "augur"; @@ -162,7 +162,7 @@ CREATE SEQUENCE "spdx"."files_scans_file_scan_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."files_scans_file_scan_id_seq" OWNER TO "augur"; @@ -174,7 +174,7 @@ CREATE SEQUENCE "spdx"."identifiers_identifier_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."identifiers_identifier_id_seq" OWNER TO "augur"; @@ -186,7 +186,7 @@ CREATE SEQUENCE "spdx"."licenses_license_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."licenses_license_id_seq" OWNER TO "augur"; @@ -198,7 +198,7 @@ CREATE SEQUENCE "spdx"."packages_files_package_file_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."packages_files_package_file_id_seq" OWNER TO "augur"; @@ -210,7 +210,7 @@ CREATE SEQUENCE "spdx"."packages_package_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."packages_package_id_seq" OWNER TO "augur"; @@ -222,7 +222,7 @@ CREATE SEQUENCE "spdx"."packages_scans_package_scan_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."packages_scans_package_scan_id_seq" OWNER TO "augur"; @@ -234,7 +234,7 @@ CREATE SEQUENCE "spdx"."projects_project_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."projects_project_id_seq" OWNER TO "augur"; @@ -246,7 +246,7 @@ CREATE SEQUENCE "spdx"."relationship_types_relationship_type_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."relationship_types_relationship_type_id_seq" OWNER TO "augur"; @@ -258,7 +258,7 @@ CREATE SEQUENCE "spdx"."relationships_relationship_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."relationships_relationship_id_seq" OWNER TO "augur"; @@ -270,7 +270,7 @@ CREATE SEQUENCE "spdx"."scanners_scanner_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 2147483647 -START 1 +START 10000 CACHE 1; ALTER SEQUENCE "spdx"."scanners_scanner_id_seq" OWNER TO "augur"; @@ -285,6 +285,14 @@ CREATE TABLE "spdx"."annotation_types" ( ; ALTER TABLE "spdx"."annotation_types" OWNER TO "augur"; +-- ---------------------------- +-- Records of annotation_types +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."annotation_types" VALUES (1, 'REVIEW'); +INSERT INTO "spdx"."annotation_types" VALUES (2, 'OTHER'); +COMMIT; + -- ---------------------------- -- Table structure for annotations -- ---------------------------- @@ -326,6 +334,15 @@ CREATE TABLE "spdx"."creator_types" ( ; ALTER TABLE "spdx"."creator_types" OWNER TO "augur"; +-- ---------------------------- +-- Records of creator_types +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."creator_types" VALUES (1, 'Person'); +INSERT INTO "spdx"."creator_types" VALUES (2, 'Organization'); +INSERT INTO "spdx"."creator_types" VALUES (3, 'Tool'); +COMMIT; + -- ---------------------------- -- Table structure for creators -- ---------------------------- @@ -339,6 +356,13 @@ CREATE TABLE "spdx"."creators" ( ; ALTER TABLE "spdx"."creators" OWNER TO "augur"; +-- ---------------------------- +-- Records of creators +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."creators" VALUES (1, 3, 'dosocs2-0.16.1', ''); +COMMIT; + -- ---------------------------- -- Table structure for document_namespaces -- ---------------------------- @@ -418,6 +442,23 @@ CREATE TABLE "spdx"."file_types" ( ; ALTER TABLE "spdx"."file_types" OWNER TO "augur"; +-- ---------------------------- +-- Records of file_types +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."file_types" VALUES (1, 'SOURCE'); +INSERT INTO "spdx"."file_types" VALUES (2, 'BINARY'); +INSERT INTO "spdx"."file_types" VALUES (3, 'ARCHIVE'); +INSERT INTO "spdx"."file_types" VALUES (4, 'APPLICATION'); +INSERT INTO "spdx"."file_types" VALUES (5, 'AUDIO'); +INSERT INTO "spdx"."file_types" VALUES (6, 'IMAGE'); +INSERT INTO "spdx"."file_types" VALUES (7, 'TEXT'); +INSERT INTO "spdx"."file_types" VALUES (8, 'VIDEO'); +INSERT INTO "spdx"."file_types" VALUES (9, 'DOCUMENTATION'); +INSERT INTO "spdx"."file_types" VALUES (10, 'SPDX'); +INSERT INTO "spdx"."file_types" VALUES (11, 'OTHER'); +COMMIT; + -- ---------------------------- -- Table structure for files -- ---------------------------- @@ -489,6 +530,334 @@ CREATE TABLE "spdx"."licenses" ( ; ALTER TABLE "spdx"."licenses" OWNER TO "augur"; +-- ---------------------------- +-- Records of licenses +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."licenses" VALUES (1, '3dfx Glide License', 'Glide', 'http://spdx.org/licenses/Glide.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (2, 'Abstyles License', 'Abstyles', 'http://spdx.org/licenses/Abstyles.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (3, 'Academic Free License v1.1', 'AFL-1.1', 'http://spdx.org/licenses/AFL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (4, 'Academic Free License v1.2', 'AFL-1.2', 'http://spdx.org/licenses/AFL-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (5, 'Academic Free License v2.0', 'AFL-2.0', 'http://spdx.org/licenses/AFL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (6, 'Academic Free License v2.1', 'AFL-2.1', 'http://spdx.org/licenses/AFL-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (7, 'Academic Free License v3.0', 'AFL-3.0', 'http://spdx.org/licenses/AFL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (8, 'Academy of Motion Picture Arts and Sciences BSD', 'AMPAS', 'http://spdx.org/licenses/AMPAS.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (9, 'Adaptive Public License 1.0', 'APL-1.0', 'http://spdx.org/licenses/APL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (10, 'Adobe Glyph List License', 'Adobe-Glyph', 'http://spdx.org/licenses/Adobe-Glyph.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (11, 'Adobe Postscript AFM License', 'APAFML', 'http://spdx.org/licenses/APAFML.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (12, 'Adobe Systems Incorporated Source Code License Agreement', 'Adobe-2006', 'http://spdx.org/licenses/Adobe-2006.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (13, 'Affero General Public License v1.0', 'AGPL-1.0', 'http://spdx.org/licenses/AGPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (14, 'Afmparse License', 'Afmparse', 'http://spdx.org/licenses/Afmparse.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (15, 'Aladdin Free Public License', 'Aladdin', 'http://spdx.org/licenses/Aladdin.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (16, 'Amazon Digital Services License', 'ADSL', 'http://spdx.org/licenses/ADSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (17, 'AMD''s plpa_map.c License', 'AMDPLPA', 'http://spdx.org/licenses/AMDPLPA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (18, 'ANTLR Software Rights Notice', 'ANTLR-PD', 'http://spdx.org/licenses/ANTLR-PD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (19, 'Apache License 1.0', 'Apache-1.0', 'http://spdx.org/licenses/Apache-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (20, 'Apache License 1.1', 'Apache-1.1', 'http://spdx.org/licenses/Apache-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (21, 'Apache License 2.0', 'Apache-2.0', 'http://spdx.org/licenses/Apache-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (22, 'Apple MIT License', 'AML', 'http://spdx.org/licenses/AML.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (23, 'Apple Public Source License 1.0', 'APSL-1.0', 'http://spdx.org/licenses/APSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (24, 'Apple Public Source License 1.1', 'APSL-1.1', 'http://spdx.org/licenses/APSL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (25, 'Apple Public Source License 1.2', 'APSL-1.2', 'http://spdx.org/licenses/APSL-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (26, 'Apple Public Source License 2.0', 'APSL-2.0', 'http://spdx.org/licenses/APSL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (27, 'Artistic License 1.0', 'Artistic-1.0', 'http://spdx.org/licenses/Artistic-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (28, 'Artistic License 1.0 (Perl)', 'Artistic-1.0-Perl', 'http://spdx.org/licenses/Artistic-1.0-Perl.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (29, 'Artistic License 1.0 w/clause 8', 'Artistic-1.0-cl8', 'http://spdx.org/licenses/Artistic-1.0-cl8.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (30, 'Artistic License 2.0', 'Artistic-2.0', 'http://spdx.org/licenses/Artistic-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (31, 'Attribution Assurance License', 'AAL', 'http://spdx.org/licenses/AAL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (32, 'Bahyph License', 'Bahyph', 'http://spdx.org/licenses/Bahyph.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (33, 'Barr License', 'Barr', 'http://spdx.org/licenses/Barr.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (34, 'Beerware License', 'Beerware', 'http://spdx.org/licenses/Beerware.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (35, 'BitTorrent Open Source License v1.0', 'BitTorrent-1.0', 'http://spdx.org/licenses/BitTorrent-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (36, 'BitTorrent Open Source License v1.1', 'BitTorrent-1.1', 'http://spdx.org/licenses/BitTorrent-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (37, 'Boost Software License 1.0', 'BSL-1.0', 'http://spdx.org/licenses/BSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (38, 'Borceux license', 'Borceux', 'http://spdx.org/licenses/Borceux.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (39, 'BSD 2-clause "Simplified" License', 'BSD-2-Clause', 'http://spdx.org/licenses/BSD-2-Clause.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (40, 'BSD 2-clause FreeBSD License', 'BSD-2-Clause-FreeBSD', 'http://spdx.org/licenses/BSD-2-Clause-FreeBSD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (41, 'BSD 2-clause NetBSD License', 'BSD-2-Clause-NetBSD', 'http://spdx.org/licenses/BSD-2-Clause-NetBSD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (42, 'BSD 3-clause "New" or "Revised" License', 'BSD-3-Clause', 'http://spdx.org/licenses/BSD-3-Clause.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (43, 'BSD 3-clause Clear License', 'BSD-3-Clause-Clear', 'http://spdx.org/licenses/BSD-3-Clause-Clear.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (44, 'BSD 4-clause "Original" or "Old" License', 'BSD-4-Clause', 'http://spdx.org/licenses/BSD-4-Clause.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (45, 'BSD Protection License', 'BSD-Protection', 'http://spdx.org/licenses/BSD-Protection.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (46, 'BSD with attribution', 'BSD-3-Clause-Attribution', 'http://spdx.org/licenses/BSD-3-Clause-Attribution.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (47, 'BSD Zero Clause License', '0BSD', 'http://spdx.org/licenses/0BSD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (48, 'BSD-4-Clause (University of California-Specific)', 'BSD-4-Clause-UC', 'http://spdx.org/licenses/BSD-4-Clause-UC.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (49, 'bzip2 and libbzip2 License v1.0.5', 'bzip2-1.0.5', 'http://spdx.org/licenses/bzip2-1.0.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (50, 'bzip2 and libbzip2 License v1.0.6', 'bzip2-1.0.6', 'http://spdx.org/licenses/bzip2-1.0.6.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (51, 'Caldera License', 'Caldera', 'http://spdx.org/licenses/Caldera.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (52, 'CeCILL Free Software License Agreement v1.0', 'CECILL-1.0', 'http://spdx.org/licenses/CECILL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (53, 'CeCILL Free Software License Agreement v1.1', 'CECILL-1.1', 'http://spdx.org/licenses/CECILL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (54, 'CeCILL Free Software License Agreement v2.0', 'CECILL-2.0', 'http://spdx.org/licenses/CECILL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (55, 'CeCILL Free Software License Agreement v2.1', 'CECILL-2.1', 'http://spdx.org/licenses/CECILL-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (56, 'CeCILL-B Free Software License Agreement', 'CECILL-B', 'http://spdx.org/licenses/CECILL-B.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (57, 'CeCILL-C Free Software License Agreement', 'CECILL-C', 'http://spdx.org/licenses/CECILL-C.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (58, 'Clarified Artistic License', 'ClArtistic', 'http://spdx.org/licenses/ClArtistic.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (59, 'CMU License', 'MIT-CMU', 'http://spdx.org/licenses/MIT-CMU.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (60, 'CNRI Jython License', 'CNRI-Jython', 'http://spdx.org/licenses/CNRI-Jython.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (61, 'CNRI Python License', 'CNRI-Python', 'http://spdx.org/licenses/CNRI-Python.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (62, 'CNRI Python Open Source GPL Compatible License Agreement', 'CNRI-Python-GPL-Compatible', 'http://spdx.org/licenses/CNRI-Python-GPL-Compatible.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (63, 'Code Project Open License 1.02', 'CPOL-1.02', 'http://spdx.org/licenses/CPOL-1.02.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (64, 'Common Development and Distribution License 1.0', 'CDDL-1.0', 'http://spdx.org/licenses/CDDL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (65, 'Common Development and Distribution License 1.1', 'CDDL-1.1', 'http://spdx.org/licenses/CDDL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (66, 'Common Public Attribution License 1.0', 'CPAL-1.0', 'http://spdx.org/licenses/CPAL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (67, 'Common Public License 1.0', 'CPL-1.0', 'http://spdx.org/licenses/CPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (68, 'Computer Associates Trusted Open Source License 1.1', 'CATOSL-1.1', 'http://spdx.org/licenses/CATOSL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (69, 'Condor Public License v1.1', 'Condor-1.1', 'http://spdx.org/licenses/Condor-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (70, 'Creative Commons Attribution 1.0', 'CC-BY-1.0', 'http://spdx.org/licenses/CC-BY-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (71, 'Creative Commons Attribution 2.0', 'CC-BY-2.0', 'http://spdx.org/licenses/CC-BY-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (72, 'Creative Commons Attribution 2.5', 'CC-BY-2.5', 'http://spdx.org/licenses/CC-BY-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (73, 'Creative Commons Attribution 3.0', 'CC-BY-3.0', 'http://spdx.org/licenses/CC-BY-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (74, 'Creative Commons Attribution 4.0', 'CC-BY-4.0', 'http://spdx.org/licenses/CC-BY-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (75, 'Creative Commons Attribution No Derivatives 1.0', 'CC-BY-ND-1.0', 'http://spdx.org/licenses/CC-BY-ND-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (76, 'Creative Commons Attribution No Derivatives 2.0', 'CC-BY-ND-2.0', 'http://spdx.org/licenses/CC-BY-ND-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (77, 'Creative Commons Attribution No Derivatives 2.5', 'CC-BY-ND-2.5', 'http://spdx.org/licenses/CC-BY-ND-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (78, 'Creative Commons Attribution No Derivatives 3.0', 'CC-BY-ND-3.0', 'http://spdx.org/licenses/CC-BY-ND-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (79, 'Creative Commons Attribution No Derivatives 4.0', 'CC-BY-ND-4.0', 'http://spdx.org/licenses/CC-BY-ND-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (80, 'Creative Commons Attribution Non Commercial 1.0', 'CC-BY-NC-1.0', 'http://spdx.org/licenses/CC-BY-NC-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (81, 'Creative Commons Attribution Non Commercial 2.0', 'CC-BY-NC-2.0', 'http://spdx.org/licenses/CC-BY-NC-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (82, 'Creative Commons Attribution Non Commercial 2.5', 'CC-BY-NC-2.5', 'http://spdx.org/licenses/CC-BY-NC-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (83, 'Creative Commons Attribution Non Commercial 3.0', 'CC-BY-NC-3.0', 'http://spdx.org/licenses/CC-BY-NC-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (84, 'Creative Commons Attribution Non Commercial 4.0', 'CC-BY-NC-4.0', 'http://spdx.org/licenses/CC-BY-NC-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (85, 'Creative Commons Attribution Non Commercial No Derivatives 1.0', 'CC-BY-NC-ND-1.0', 'http://spdx.org/licenses/CC-BY-NC-ND-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (86, 'Creative Commons Attribution Non Commercial No Derivatives 2.0', 'CC-BY-NC-ND-2.0', 'http://spdx.org/licenses/CC-BY-NC-ND-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (87, 'Creative Commons Attribution Non Commercial No Derivatives 2.5', 'CC-BY-NC-ND-2.5', 'http://spdx.org/licenses/CC-BY-NC-ND-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (88, 'Creative Commons Attribution Non Commercial No Derivatives 3.0', 'CC-BY-NC-ND-3.0', 'http://spdx.org/licenses/CC-BY-NC-ND-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (89, 'Creative Commons Attribution Non Commercial No Derivatives 4.0', 'CC-BY-NC-ND-4.0', 'http://spdx.org/licenses/CC-BY-NC-ND-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (90, 'Creative Commons Attribution Non Commercial Share Alike 1.0', 'CC-BY-NC-SA-1.0', 'http://spdx.org/licenses/CC-BY-NC-SA-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (91, 'Creative Commons Attribution Non Commercial Share Alike 2.0', 'CC-BY-NC-SA-2.0', 'http://spdx.org/licenses/CC-BY-NC-SA-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (92, 'Creative Commons Attribution Non Commercial Share Alike 2.5', 'CC-BY-NC-SA-2.5', 'http://spdx.org/licenses/CC-BY-NC-SA-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (93, 'Creative Commons Attribution Non Commercial Share Alike 3.0', 'CC-BY-NC-SA-3.0', 'http://spdx.org/licenses/CC-BY-NC-SA-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (94, 'Creative Commons Attribution Non Commercial Share Alike 4.0', 'CC-BY-NC-SA-4.0', 'http://spdx.org/licenses/CC-BY-NC-SA-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (95, 'Creative Commons Attribution Share Alike 1.0', 'CC-BY-SA-1.0', 'http://spdx.org/licenses/CC-BY-SA-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (96, 'Creative Commons Attribution Share Alike 2.0', 'CC-BY-SA-2.0', 'http://spdx.org/licenses/CC-BY-SA-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (97, 'Creative Commons Attribution Share Alike 2.5', 'CC-BY-SA-2.5', 'http://spdx.org/licenses/CC-BY-SA-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (98, 'Creative Commons Attribution Share Alike 3.0', 'CC-BY-SA-3.0', 'http://spdx.org/licenses/CC-BY-SA-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (99, 'Creative Commons Attribution Share Alike 4.0', 'CC-BY-SA-4.0', 'http://spdx.org/licenses/CC-BY-SA-4.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (100, 'Creative Commons Zero v1.0 Universal', 'CC0-1.0', 'http://spdx.org/licenses/CC0-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (101, 'Crossword License', 'Crossword', 'http://spdx.org/licenses/Crossword.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (102, 'CrystalStacker License', 'CrystalStacker', 'http://spdx.org/licenses/CrystalStacker.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (103, 'CUA Office Public License v1.0', 'CUA-OPL-1.0', 'http://spdx.org/licenses/CUA-OPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (104, 'Cube License', 'Cube', 'http://spdx.org/licenses/Cube.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (105, 'Deutsche Freie Software Lizenz', 'D-FSL-1.0', 'http://spdx.org/licenses/D-FSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (106, 'diffmark license', 'diffmark', 'http://spdx.org/licenses/diffmark.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (107, 'Do What The F*ck You Want To Public License', 'WTFPL', 'http://spdx.org/licenses/WTFPL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (108, 'DOC License', 'DOC', 'http://spdx.org/licenses/DOC.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (109, 'Dotseqn License', 'Dotseqn', 'http://spdx.org/licenses/Dotseqn.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (110, 'DSDP License', 'DSDP', 'http://spdx.org/licenses/DSDP.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (111, 'dvipdfm License', 'dvipdfm', 'http://spdx.org/licenses/dvipdfm.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (112, 'Eclipse Public License 1.0', 'EPL-1.0', 'http://spdx.org/licenses/EPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (113, 'Educational Community License v1.0', 'ECL-1.0', 'http://spdx.org/licenses/ECL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (114, 'Educational Community License v2.0', 'ECL-2.0', 'http://spdx.org/licenses/ECL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (115, 'eGenix.com Public License 1.1.0', 'eGenix', 'http://spdx.org/licenses/eGenix.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (116, 'Eiffel Forum License v1.0', 'EFL-1.0', 'http://spdx.org/licenses/EFL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (117, 'Eiffel Forum License v2.0', 'EFL-2.0', 'http://spdx.org/licenses/EFL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (118, 'Enlightenment License (e16)', 'MIT-advertising', 'http://spdx.org/licenses/MIT-advertising.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (119, 'enna License', 'MIT-enna', 'http://spdx.org/licenses/MIT-enna.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (120, 'Entessa Public License v1.0', 'Entessa', 'http://spdx.org/licenses/Entessa.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (121, 'Erlang Public License v1.1', 'ErlPL-1.1', 'http://spdx.org/licenses/ErlPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (122, 'EU DataGrid Software License', 'EUDatagrid', 'http://spdx.org/licenses/EUDatagrid.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (123, 'European Union Public License 1.0', 'EUPL-1.0', 'http://spdx.org/licenses/EUPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (124, 'European Union Public License 1.1', 'EUPL-1.1', 'http://spdx.org/licenses/EUPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (125, 'Eurosym License', 'Eurosym', 'http://spdx.org/licenses/Eurosym.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (126, 'Fair License', 'Fair', 'http://spdx.org/licenses/Fair.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (127, 'feh License', 'MIT-feh', 'http://spdx.org/licenses/MIT-feh.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (128, 'Frameworx Open License 1.0', 'Frameworx-1.0', 'http://spdx.org/licenses/Frameworx-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (129, 'FreeImage Public License v1.0', 'FreeImage', 'http://spdx.org/licenses/FreeImage.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (130, 'Freetype Project License', 'FTL', 'http://spdx.org/licenses/FTL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (131, 'FSF Unlimited License', 'FSFUL', 'http://spdx.org/licenses/FSFUL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (132, 'FSF Unlimited License (with License Retention)', 'FSFULLR', 'http://spdx.org/licenses/FSFULLR.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (133, 'Giftware License', 'Giftware', 'http://spdx.org/licenses/Giftware.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (134, 'GL2PS License', 'GL2PS', 'http://spdx.org/licenses/GL2PS.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (135, 'Glulxe License', 'Glulxe', 'http://spdx.org/licenses/Glulxe.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (136, 'GNU Affero General Public License v3.0', 'AGPL-3.0', 'http://spdx.org/licenses/AGPL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (137, 'GNU Free Documentation License v1.1', 'GFDL-1.1', 'http://spdx.org/licenses/GFDL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (138, 'GNU Free Documentation License v1.2', 'GFDL-1.2', 'http://spdx.org/licenses/GFDL-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (139, 'GNU Free Documentation License v1.3', 'GFDL-1.3', 'http://spdx.org/licenses/GFDL-1.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (140, 'GNU General Public License v1.0 only', 'GPL-1.0', 'http://spdx.org/licenses/GPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (141, 'GNU General Public License v2.0 only', 'GPL-2.0', 'http://spdx.org/licenses/GPL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (142, 'GNU General Public License v3.0 only', 'GPL-3.0', 'http://spdx.org/licenses/GPL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (143, 'GNU Lesser General Public License v2.1 only', 'LGPL-2.1', 'http://spdx.org/licenses/LGPL-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (144, 'GNU Lesser General Public License v3.0 only', 'LGPL-3.0', 'http://spdx.org/licenses/LGPL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (145, 'GNU Library General Public License v2 only', 'LGPL-2.0', 'http://spdx.org/licenses/LGPL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (146, 'gnuplot License', 'gnuplot', 'http://spdx.org/licenses/gnuplot.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (147, 'gSOAP Public License v1.3b', 'gSOAP-1.3b', 'http://spdx.org/licenses/gSOAP-1.3b.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (148, 'Haskell Language Report License', 'HaskellReport', 'http://spdx.org/licenses/HaskellReport.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (149, 'Historic Permission Notice and Disclaimer', 'HPND', 'http://spdx.org/licenses/HPND.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (150, 'IBM PowerPC Initialization and Boot Software', 'IBM-pibs', 'http://spdx.org/licenses/IBM-pibs.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (151, 'IBM Public License v1.0', 'IPL-1.0', 'http://spdx.org/licenses/IPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (152, 'ICU License', 'ICU', 'http://spdx.org/licenses/ICU.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (153, 'ImageMagick License', 'ImageMagick', 'http://spdx.org/licenses/ImageMagick.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (154, 'iMatix Standard Function Library Agreement', 'iMatix', 'http://spdx.org/licenses/iMatix.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (155, 'Imlib2 License', 'Imlib2', 'http://spdx.org/licenses/Imlib2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (156, 'Independent JPEG Group License', 'IJG', 'http://spdx.org/licenses/IJG.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (157, 'Intel ACPI Software License Agreement', 'Intel-ACPI', 'http://spdx.org/licenses/Intel-ACPI.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (158, 'Intel Open Source License', 'Intel', 'http://spdx.org/licenses/Intel.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (159, 'Interbase Public License v1.0', 'Interbase-1.0', 'http://spdx.org/licenses/Interbase-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (160, 'IPA Font License', 'IPA', 'http://spdx.org/licenses/IPA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (161, 'ISC License', 'ISC', 'http://spdx.org/licenses/ISC.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (162, 'JasPer License', 'JasPer-2.0', 'http://spdx.org/licenses/JasPer-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (163, 'JSON License', 'JSON', 'http://spdx.org/licenses/JSON.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (164, 'LaTeX Project Public License 1.3a', 'LPPL-1.3a', 'http://spdx.org/licenses/LPPL-1.3a.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (165, 'LaTeX Project Public License v1.0', 'LPPL-1.0', 'http://spdx.org/licenses/LPPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (166, 'LaTeX Project Public License v1.1', 'LPPL-1.1', 'http://spdx.org/licenses/LPPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (167, 'LaTeX Project Public License v1.2', 'LPPL-1.2', 'http://spdx.org/licenses/LPPL-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (168, 'LaTeX Project Public License v1.3c', 'LPPL-1.3c', 'http://spdx.org/licenses/LPPL-1.3c.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (169, 'Latex2e License', 'Latex2e', 'http://spdx.org/licenses/Latex2e.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (170, 'Lawrence Berkeley National Labs BSD variant license', 'BSD-3-Clause-LBNL', 'http://spdx.org/licenses/BSD-3-Clause-LBNL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (171, 'Leptonica License', 'Leptonica', 'http://spdx.org/licenses/Leptonica.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (172, 'Lesser General Public License For Linguistic Resources', 'LGPLLR', 'http://spdx.org/licenses/LGPLLR.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (173, 'libpng License', 'Libpng', 'http://spdx.org/licenses/Libpng.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (174, 'libtiff License', 'libtiff', 'http://spdx.org/licenses/libtiff.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (175, 'Lucent Public License v1.02', 'LPL-1.02', 'http://spdx.org/licenses/LPL-1.02.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (176, 'Lucent Public License Version 1.0', 'LPL-1.0', 'http://spdx.org/licenses/LPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (177, 'MakeIndex License', 'MakeIndex', 'http://spdx.org/licenses/MakeIndex.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (178, 'Matrix Template Library License', 'MTLL', 'http://spdx.org/licenses/MTLL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (179, 'Microsoft Public License', 'MS-PL', 'http://spdx.org/licenses/MS-PL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (180, 'Microsoft Reciprocal License', 'MS-RL', 'http://spdx.org/licenses/MS-RL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (181, 'MirOS Licence', 'MirOS', 'http://spdx.org/licenses/MirOS.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (182, 'MIT +no-false-attribs license', 'MITNFA', 'http://spdx.org/licenses/MITNFA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (183, 'MIT License', 'MIT', 'http://spdx.org/licenses/MIT.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (184, 'Motosoto License', 'Motosoto', 'http://spdx.org/licenses/Motosoto.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (185, 'Mozilla Public License 1.0', 'MPL-1.0', 'http://spdx.org/licenses/MPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (186, 'Mozilla Public License 1.1', 'MPL-1.1', 'http://spdx.org/licenses/MPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (187, 'Mozilla Public License 2.0', 'MPL-2.0', 'http://spdx.org/licenses/MPL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (188, 'Mozilla Public License 2.0 (no copyleft exception)', 'MPL-2.0-no-copyleft-exception', 'http://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (189, 'mpich2 License', 'mpich2', 'http://spdx.org/licenses/mpich2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (190, 'Multics License', 'Multics', 'http://spdx.org/licenses/Multics.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (191, 'Mup License', 'Mup', 'http://spdx.org/licenses/Mup.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (192, 'NASA Open Source Agreement 1.3', 'NASA-1.3', 'http://spdx.org/licenses/NASA-1.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (193, 'Naumen Public License', 'Naumen', 'http://spdx.org/licenses/Naumen.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (194, 'Net Boolean Public License v1', 'NBPL-1.0', 'http://spdx.org/licenses/NBPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (195, 'NetCDF license', 'NetCDF', 'http://spdx.org/licenses/NetCDF.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (196, 'Nethack General Public License', 'NGPL', 'http://spdx.org/licenses/NGPL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (197, 'Netizen Open Source License', 'NOSL', 'http://spdx.org/licenses/NOSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (198, 'Netscape Public License v1.0', 'NPL-1.0', 'http://spdx.org/licenses/NPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (199, 'Netscape Public License v1.1', 'NPL-1.1', 'http://spdx.org/licenses/NPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (200, 'Newsletr License', 'Newsletr', 'http://spdx.org/licenses/Newsletr.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (201, 'No Limit Public License', 'NLPL', 'http://spdx.org/licenses/NLPL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (202, 'Nokia Open Source License', 'Nokia', 'http://spdx.org/licenses/Nokia.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (203, 'Non-Profit Open Software License 3.0', 'NPOSL-3.0', 'http://spdx.org/licenses/NPOSL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (204, 'Noweb License', 'Noweb', 'http://spdx.org/licenses/Noweb.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (205, 'NRL License', 'NRL', 'http://spdx.org/licenses/NRL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (206, 'NTP License', 'NTP', 'http://spdx.org/licenses/NTP.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (207, 'Nunit License', 'Nunit', 'http://spdx.org/licenses/Nunit.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (208, 'OCLC Research Public License 2.0', 'OCLC-2.0', 'http://spdx.org/licenses/OCLC-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (209, 'ODC Open Database License v1.0', 'ODbL-1.0', 'http://spdx.org/licenses/ODbL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (210, 'ODC Public Domain Dedication & License 1.0', 'PDDL-1.0', 'http://spdx.org/licenses/PDDL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (211, 'Open Group Test Suite License', 'OGTSL', 'http://spdx.org/licenses/OGTSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (212, 'Open LDAP Public License 2.2.2', 'OLDAP-2.2.2', 'http://spdx.org/licenses/OLDAP-2.2.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (213, 'Open LDAP Public License v1.1', 'OLDAP-1.1', 'http://spdx.org/licenses/OLDAP-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (214, 'Open LDAP Public License v1.2', 'OLDAP-1.2', 'http://spdx.org/licenses/OLDAP-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (215, 'Open LDAP Public License v1.3', 'OLDAP-1.3', 'http://spdx.org/licenses/OLDAP-1.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (216, 'Open LDAP Public License v1.4', 'OLDAP-1.4', 'http://spdx.org/licenses/OLDAP-1.4.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (217, 'Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)', 'OLDAP-2.0', 'http://spdx.org/licenses/OLDAP-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (218, 'Open LDAP Public License v2.0.1', 'OLDAP-2.0.1', 'http://spdx.org/licenses/OLDAP-2.0.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (219, 'Open LDAP Public License v2.1', 'OLDAP-2.1', 'http://spdx.org/licenses/OLDAP-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (220, 'Open LDAP Public License v2.2', 'OLDAP-2.2', 'http://spdx.org/licenses/OLDAP-2.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (221, 'Open LDAP Public License v2.2.1', 'OLDAP-2.2.1', 'http://spdx.org/licenses/OLDAP-2.2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (222, 'Open LDAP Public License v2.3', 'OLDAP-2.3', 'http://spdx.org/licenses/OLDAP-2.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (223, 'Open LDAP Public License v2.4', 'OLDAP-2.4', 'http://spdx.org/licenses/OLDAP-2.4.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (224, 'Open LDAP Public License v2.5', 'OLDAP-2.5', 'http://spdx.org/licenses/OLDAP-2.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (225, 'Open LDAP Public License v2.6', 'OLDAP-2.6', 'http://spdx.org/licenses/OLDAP-2.6.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (226, 'Open LDAP Public License v2.7', 'OLDAP-2.7', 'http://spdx.org/licenses/OLDAP-2.7.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (227, 'Open LDAP Public License v2.8', 'OLDAP-2.8', 'http://spdx.org/licenses/OLDAP-2.8.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (228, 'Open Market License', 'OML', 'http://spdx.org/licenses/OML.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (229, 'Open Public License v1.0', 'OPL-1.0', 'http://spdx.org/licenses/OPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (230, 'Open Software License 1.0', 'OSL-1.0', 'http://spdx.org/licenses/OSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (231, 'Open Software License 1.1', 'OSL-1.1', 'http://spdx.org/licenses/OSL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (232, 'Open Software License 2.0', 'OSL-2.0', 'http://spdx.org/licenses/OSL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (233, 'Open Software License 2.1', 'OSL-2.1', 'http://spdx.org/licenses/OSL-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (234, 'Open Software License 3.0', 'OSL-3.0', 'http://spdx.org/licenses/OSL-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (235, 'OpenSSL License', 'OpenSSL', 'http://spdx.org/licenses/OpenSSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (236, 'PHP License v3.0', 'PHP-3.0', 'http://spdx.org/licenses/PHP-3.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (237, 'PHP License v3.01', 'PHP-3.01', 'http://spdx.org/licenses/PHP-3.01.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (238, 'Plexus Classworlds License', 'Plexus', 'http://spdx.org/licenses/Plexus.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (239, 'PostgreSQL License', 'PostgreSQL', 'http://spdx.org/licenses/PostgreSQL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (240, 'psfrag License', 'psfrag', 'http://spdx.org/licenses/psfrag.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (241, 'psutils License', 'psutils', 'http://spdx.org/licenses/psutils.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (242, 'Python License 2.0', 'Python-2.0', 'http://spdx.org/licenses/Python-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (243, 'Q Public License 1.0', 'QPL-1.0', 'http://spdx.org/licenses/QPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (244, 'Qhull License', 'Qhull', 'http://spdx.org/licenses/Qhull.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (245, 'Rdisc License', 'Rdisc', 'http://spdx.org/licenses/Rdisc.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (246, 'RealNetworks Public Source License v1.0', 'RPSL-1.0', 'http://spdx.org/licenses/RPSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (247, 'Reciprocal Public License 1.1', 'RPL-1.1', 'http://spdx.org/licenses/RPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (248, 'Reciprocal Public License 1.5', 'RPL-1.5', 'http://spdx.org/licenses/RPL-1.5.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (249, 'Red Hat eCos Public License v1.1', 'RHeCos-1.1', 'http://spdx.org/licenses/RHeCos-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (250, 'Ricoh Source Code Public License', 'RSCPL', 'http://spdx.org/licenses/RSCPL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (251, 'RSA Message-Digest License ', 'RSA-MD', 'http://spdx.org/licenses/RSA-MD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (252, 'Ruby License', 'Ruby', 'http://spdx.org/licenses/Ruby.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (253, 'Sax Public Domain Notice', 'SAX-PD', 'http://spdx.org/licenses/SAX-PD.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (254, 'Saxpath License', 'Saxpath', 'http://spdx.org/licenses/Saxpath.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (255, 'SCEA Shared Source License', 'SCEA', 'http://spdx.org/licenses/SCEA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (256, 'Scheme Widget Library (SWL) Software License Agreement', 'SWL', 'http://spdx.org/licenses/SWL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (257, 'Sendmail License', 'Sendmail', 'http://spdx.org/licenses/Sendmail.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (258, 'SGI Free Software License B v1.0', 'SGI-B-1.0', 'http://spdx.org/licenses/SGI-B-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (259, 'SGI Free Software License B v1.1', 'SGI-B-1.1', 'http://spdx.org/licenses/SGI-B-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (260, 'SGI Free Software License B v2.0', 'SGI-B-2.0', 'http://spdx.org/licenses/SGI-B-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (261, 'SIL Open Font License 1.0', 'OFL-1.0', 'http://spdx.org/licenses/OFL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (262, 'SIL Open Font License 1.1', 'OFL-1.1', 'http://spdx.org/licenses/OFL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (263, 'Simple Public License 2.0', 'SimPL-2.0', 'http://spdx.org/licenses/SimPL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (264, 'Sleepycat License', 'Sleepycat', 'http://spdx.org/licenses/Sleepycat.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (265, 'SNIA Public License 1.1', 'SNIA', 'http://spdx.org/licenses/SNIA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (266, 'Spencer License 86', 'Spencer-86', 'http://spdx.org/licenses/Spencer-86.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (267, 'Spencer License 94', 'Spencer-94', 'http://spdx.org/licenses/Spencer-94.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (268, 'Spencer License 99', 'Spencer-99', 'http://spdx.org/licenses/Spencer-99.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (269, 'Standard ML of New Jersey License', 'SMLNJ', 'http://spdx.org/licenses/SMLNJ.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (270, 'SugarCRM Public License v1.1.3', 'SugarCRM-1.1.3', 'http://spdx.org/licenses/SugarCRM-1.1.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (271, 'Sun Industry Standards Source License v1.1', 'SISSL', 'http://spdx.org/licenses/SISSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (272, 'Sun Industry Standards Source License v1.2', 'SISSL-1.2', 'http://spdx.org/licenses/SISSL-1.2.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (273, 'Sun Public License v1.0', 'SPL-1.0', 'http://spdx.org/licenses/SPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (274, 'Sybase Open Watcom Public License 1.0', 'Watcom-1.0', 'http://spdx.org/licenses/Watcom-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (275, 'TCL/TK License', 'TCL', 'http://spdx.org/licenses/TCL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (276, 'The Unlicense', 'Unlicense', 'http://spdx.org/licenses/Unlicense.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (277, 'TMate Open Source License', 'TMate', 'http://spdx.org/licenses/TMate.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (278, 'TORQUE v2.5+ Software License v1.1', 'TORQUE-1.1', 'http://spdx.org/licenses/TORQUE-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (279, 'Trusster Open Source License', 'TOSL', 'http://spdx.org/licenses/TOSL.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (280, 'Unicode Terms of Use', 'Unicode-TOU', 'http://spdx.org/licenses/Unicode-TOU.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (281, 'Universal Permissive License v1.0', 'UPL-1.0', 'http://spdx.org/licenses/UPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (282, 'University of Illinois/NCSA Open Source License', 'NCSA', 'http://spdx.org/licenses/NCSA.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (283, 'Vim License', 'Vim', 'http://spdx.org/licenses/Vim.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (284, 'VOSTROM Public License for Open Source', 'VOSTROM', 'http://spdx.org/licenses/VOSTROM.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (285, 'Vovida Software License v1.0', 'VSL-1.0', 'http://spdx.org/licenses/VSL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (286, 'W3C Software Notice and License (1998-07-20)', 'W3C-19980720', 'http://spdx.org/licenses/W3C-19980720.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (287, 'W3C Software Notice and License (2002-12-31)', 'W3C', 'http://spdx.org/licenses/W3C.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (288, 'Wsuipa License', 'Wsuipa', 'http://spdx.org/licenses/Wsuipa.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (289, 'X.Net License', 'Xnet', 'http://spdx.org/licenses/Xnet.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (290, 'X11 License', 'X11', 'http://spdx.org/licenses/X11.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (291, 'Xerox License', 'Xerox', 'http://spdx.org/licenses/Xerox.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (292, 'XFree86 License 1.1', 'XFree86-1.1', 'http://spdx.org/licenses/XFree86-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (293, 'xinetd License', 'xinetd', 'http://spdx.org/licenses/xinetd.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (294, 'XPP License', 'xpp', 'http://spdx.org/licenses/xpp.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (295, 'XSkat License', 'XSkat', 'http://spdx.org/licenses/XSkat.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (296, 'Yahoo! Public License v1.0', 'YPL-1.0', 'http://spdx.org/licenses/YPL-1.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (297, 'Yahoo! Public License v1.1', 'YPL-1.1', 'http://spdx.org/licenses/YPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (298, 'Zed License', 'Zed', 'http://spdx.org/licenses/Zed.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (299, 'Zend License v2.0', 'Zend-2.0', 'http://spdx.org/licenses/Zend-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (300, 'Zimbra Public License v1.3', 'Zimbra-1.3', 'http://spdx.org/licenses/Zimbra-1.3.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (301, 'Zimbra Public License v1.4', 'Zimbra-1.4', 'http://spdx.org/licenses/Zimbra-1.4.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (302, 'zlib License', 'Zlib', 'http://spdx.org/licenses/Zlib.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (303, 'zlib/libpng License with Acknowledgement', 'zlib-acknowledgement', 'http://spdx.org/licenses/zlib-acknowledgement.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (304, 'Zope Public License 1.1', 'ZPL-1.1', 'http://spdx.org/licenses/ZPL-1.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (305, 'Zope Public License 2.0', 'ZPL-2.0', 'http://spdx.org/licenses/ZPL-2.0.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (306, 'Zope Public License 2.1', 'ZPL-2.1', 'http://spdx.org/licenses/ZPL-2.1.html', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (307, 'eCos license version 2.0', 'eCos-2.0', 'http://spdx.org/licenses/eCos-2.0', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (308, 'GNU General Public License v1.0 or later', 'GPL-1.0+', 'http://spdx.org/licenses/GPL-1.0+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (309, 'GNU General Public License v2.0 or later', 'GPL-2.0+', 'http://spdx.org/licenses/GPL-2.0+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (310, 'GNU General Public License v2.0 w/Autoconf exception', 'GPL-2.0-with-autoconf-exception', 'http://spdx.org/licenses/GPL-2.0-with-autoconf-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (311, 'GNU General Public License v2.0 w/Bison exception', 'GPL-2.0-with-bison-exception', 'http://spdx.org/licenses/GPL-2.0-with-bison-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (312, 'GNU General Public License v2.0 w/Classpath exception', 'GPL-2.0-with-classpath-exception', 'http://spdx.org/licenses/GPL-2.0-with-classpath-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (313, 'GNU General Public License v2.0 w/Font exception', 'GPL-2.0-with-font-exception', 'http://spdx.org/licenses/GPL-2.0-with-font-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (314, 'GNU General Public License v2.0 w/GCC Runtime Library exception', 'GPL-2.0-with-GCC-exception', 'http://spdx.org/licenses/GPL-2.0-with-GCC-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (315, 'GNU General Public License v3.0 or later', 'GPL-3.0+', 'http://spdx.org/licenses/GPL-3.0+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (316, 'GNU General Public License v3.0 w/Autoconf exception', 'GPL-3.0-with-autoconf-exception', 'http://spdx.org/licenses/GPL-3.0-with-autoconf-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (317, 'GNU General Public License v3.0 w/GCC Runtime Library exception', 'GPL-3.0-with-GCC-exception', 'http://spdx.org/licenses/GPL-3.0-with-GCC-exception', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (318, 'GNU Lesser General Public License v2.1 or later', 'LGPL-2.1+', 'http://spdx.org/licenses/LGPL-2.1+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (319, 'GNU Lesser General Public License v3.0 or later', 'LGPL-3.0+', 'http://spdx.org/licenses/LGPL-3.0+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (320, 'GNU Library General Public License v2 or later', 'LGPL-2.0+', 'http://spdx.org/licenses/LGPL-2.0+', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (321, 'Standard ML of New Jersey License', 'StandardML-NJ', 'http://spdx.org/licenses/StandardML-NJ', '', 't'); +INSERT INTO "spdx"."licenses" VALUES (322, 'wxWindows Library License', 'WXwindows', 'http://spdx.org/licenses/WXwindows', '', 't'); +COMMIT; + -- ---------------------------- -- Table structure for packages -- ---------------------------- @@ -569,6 +938,42 @@ CREATE TABLE "spdx"."relationship_types" ( ; ALTER TABLE "spdx"."relationship_types" OWNER TO "augur"; +-- ---------------------------- +-- Records of relationship_types +-- ---------------------------- +BEGIN; +INSERT INTO "spdx"."relationship_types" VALUES (1, 'DESCRIBES'); +INSERT INTO "spdx"."relationship_types" VALUES (2, 'DESCRIBED_BY'); +INSERT INTO "spdx"."relationship_types" VALUES (3, 'CONTAINS'); +INSERT INTO "spdx"."relationship_types" VALUES (4, 'CONTAINED_BY'); +INSERT INTO "spdx"."relationship_types" VALUES (5, 'GENERATES'); +INSERT INTO "spdx"."relationship_types" VALUES (6, 'GENERATED_FROM'); +INSERT INTO "spdx"."relationship_types" VALUES (7, 'ANCESTOR_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (8, 'DESCENDANT_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (9, 'VARIANT_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (10, 'DISTRIBUTION_ARTIFACT'); +INSERT INTO "spdx"."relationship_types" VALUES (11, 'PATCH_FOR'); +INSERT INTO "spdx"."relationship_types" VALUES (12, 'PATCH_APPLIED'); +INSERT INTO "spdx"."relationship_types" VALUES (13, 'COPY_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (14, 'FILE_ADDED'); +INSERT INTO "spdx"."relationship_types" VALUES (15, 'FILE_DELETED'); +INSERT INTO "spdx"."relationship_types" VALUES (16, 'FILE_MODIFIED'); +INSERT INTO "spdx"."relationship_types" VALUES (17, 'EXPANDED_FROM_ARCHIVE'); +INSERT INTO "spdx"."relationship_types" VALUES (18, 'DYNAMIC_LINK'); +INSERT INTO "spdx"."relationship_types" VALUES (19, 'STATIC_LINK'); +INSERT INTO "spdx"."relationship_types" VALUES (20, 'DATA_FILE_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (21, 'TEST_CASE_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (22, 'BUILD_TOOL_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (23, 'DOCUMENTATION_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (24, 'OPTIONAL_COMPONENT_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (25, 'METAFILE_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (26, 'PACKAGE_OF'); +INSERT INTO "spdx"."relationship_types" VALUES (27, 'AMENDS'); +INSERT INTO "spdx"."relationship_types" VALUES (28, 'PREREQUISITE_FOR'); +INSERT INTO "spdx"."relationship_types" VALUES (29, 'HAS_PREREQUISITE'); +INSERT INTO "spdx"."relationship_types" VALUES (30, 'OTHER'); +COMMIT; + -- ---------------------------- -- Table structure for relationships -- ---------------------------- @@ -616,7 +1021,7 @@ OWNED BY "spdx"."annotations"."annotation_id"; SELECT setval('"spdx"."annotations_annotation_id_seq"', 2, false); ALTER SEQUENCE "spdx"."augur_repo_map_map_id_seq" OWNED BY "spdx"."augur_repo_map"."map_id"; -SELECT setval('"spdx"."augur_repo_map_map_id_seq"', 220, true); +SELECT setval('"spdx"."augur_repo_map_map_id_seq"', 2, false); ALTER SEQUENCE "spdx"."creator_types_creator_type_id_seq" OWNED BY "spdx"."creator_types"."creator_type_id"; SELECT setval('"spdx"."creator_types_creator_type_id_seq"', 4, true); @@ -625,13 +1030,13 @@ OWNED BY "spdx"."creators"."creator_id"; SELECT setval('"spdx"."creators_creator_id_seq"', 2, true); ALTER SEQUENCE "spdx"."document_namespaces_document_namespace_id_seq" OWNED BY "spdx"."document_namespaces"."document_namespace_id"; -SELECT setval('"spdx"."document_namespaces_document_namespace_id_seq"', 220, true); +SELECT setval('"spdx"."document_namespaces_document_namespace_id_seq"', 2, false); ALTER SEQUENCE "spdx"."documents_creators_document_creator_id_seq" OWNED BY "spdx"."documents_creators"."document_creator_id"; -SELECT setval('"spdx"."documents_creators_document_creator_id_seq"', 220, true); +SELECT setval('"spdx"."documents_creators_document_creator_id_seq"', 2, false); ALTER SEQUENCE "spdx"."documents_document_id_seq" OWNED BY "spdx"."documents"."document_id"; -SELECT setval('"spdx"."documents_document_id_seq"', 220, true); +SELECT setval('"spdx"."documents_document_id_seq"', 2, false); ALTER SEQUENCE "spdx"."external_refs_external_ref_id_seq" OWNED BY "spdx"."external_refs"."external_ref_id"; SELECT setval('"spdx"."external_refs_external_ref_id_seq"', 2, false); @@ -643,28 +1048,28 @@ OWNED BY "spdx"."file_types"."file_type_id"; SELECT setval('"spdx"."file_types_file_type_id_seq"', 12, true); ALTER SEQUENCE "spdx"."files_file_id_seq" OWNED BY "spdx"."files"."file_id"; -SELECT setval('"spdx"."files_file_id_seq"', 115077, true); +SELECT setval('"spdx"."files_file_id_seq"', 2, false); ALTER SEQUENCE "spdx"."files_licenses_file_license_id_seq" OWNED BY "spdx"."files_licenses"."file_license_id"; -SELECT setval('"spdx"."files_licenses_file_license_id_seq"', 42644, true); +SELECT setval('"spdx"."files_licenses_file_license_id_seq"', 2, false); ALTER SEQUENCE "spdx"."files_scans_file_scan_id_seq" OWNED BY "spdx"."files_scans"."file_scan_id"; -SELECT setval('"spdx"."files_scans_file_scan_id_seq"', 115077, true); +SELECT setval('"spdx"."files_scans_file_scan_id_seq"', 2, false); ALTER SEQUENCE "spdx"."identifiers_identifier_id_seq" OWNED BY "spdx"."identifiers"."identifier_id"; -SELECT setval('"spdx"."identifiers_identifier_id_seq"', 231198, true); +SELECT setval('"spdx"."identifiers_identifier_id_seq"', 2, false); ALTER SEQUENCE "spdx"."licenses_license_id_seq" OWNED BY "spdx"."licenses"."license_id"; -SELECT setval('"spdx"."licenses_license_id_seq"', 362, true); +SELECT setval('"spdx"."licenses_license_id_seq"', 323, true); ALTER SEQUENCE "spdx"."packages_files_package_file_id_seq" OWNED BY "spdx"."packages_files"."package_file_id"; -SELECT setval('"spdx"."packages_files_package_file_id_seq"', 228816, true); +SELECT setval('"spdx"."packages_files_package_file_id_seq"', 2, false); ALTER SEQUENCE "spdx"."packages_package_id_seq" OWNED BY "spdx"."packages"."package_id"; -SELECT setval('"spdx"."packages_package_id_seq"', 218, true); +SELECT setval('"spdx"."packages_package_id_seq"', 2, false); ALTER SEQUENCE "spdx"."packages_scans_package_scan_id_seq" OWNED BY "spdx"."packages_scans"."package_scan_id"; -SELECT setval('"spdx"."packages_scans_package_scan_id_seq"', 218, true); +SELECT setval('"spdx"."packages_scans_package_scan_id_seq"', 2, false); ALTER SEQUENCE "spdx"."projects_project_id_seq" OWNED BY "spdx"."projects"."project_id"; SELECT setval('"spdx"."projects_project_id_seq"', 2, false); @@ -673,10 +1078,10 @@ OWNED BY "spdx"."relationship_types"."relationship_type_id"; SELECT setval('"spdx"."relationship_types_relationship_type_id_seq"', 31, true); ALTER SEQUENCE "spdx"."relationships_relationship_id_seq" OWNED BY "spdx"."relationships"."relationship_id"; -SELECT setval('"spdx"."relationships_relationship_id_seq"', 923475, true); +SELECT setval('"spdx"."relationships_relationship_id_seq"', 2, false); ALTER SEQUENCE "spdx"."scanners_scanner_id_seq" OWNED BY "spdx"."scanners"."scanner_id"; -SELECT setval('"spdx"."scanners_scanner_id_seq"', 2, true); +SELECT setval('"spdx"."scanners_scanner_id_seq"', 2, false); -- ---------------------------- -- Uniques structure for table annotation_types From c626258351f34d0dd090c2b400e128b7d5e87e61 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sat, 14 Dec 2019 13:16:06 -0600 Subject: [PATCH 146/250] broker and housekeeper cleanup, should fix issue with badge worker --- augur/housekeeper/housekeeper.py | 77 +++++++++++++++++--------------- augur/routes/broker.py | 17 +++++-- 2 files changed, 53 insertions(+), 41 deletions(-) diff --git a/augur/housekeeper/housekeeper.py b/augur/housekeeper/housekeeper.py index 116b64ac22..2e8765e5b6 100644 --- a/augur/housekeeper/housekeeper.py +++ b/augur/housekeeper/housekeeper.py @@ -50,17 +50,18 @@ def __init__(self, jobs, broker, broker_host, broker_port, user, password, host, self.__updater() @staticmethod - def updater_process(broker_host, broker_port, broker, model, given, delay, repos, repo_group_id=None): + def updater_process(broker_host, broker_port, broker, job): """ Controls a given plugin's update process :param name: name of object to be updated :param delay: time needed to update :param shared: shared object that is to also be updated """ + repo_group_id = job['repo_group_id'] if 'repo_group_id' in job else None if repo_group_id: - logging.info('Housekeeper spawned {} model updater process for subsection {} with PID {}'.format(model, repo_group_id, os.getpid())) + logging.info('Housekeeper spawned {} model updater process for subsection {} with PID {}'.format(job['model'], repo_group_id, os.getpid())) else: - logging.info('Housekeeper spawned {} model updater process for repo {} with PID {}'.format(model, repos[0]['repo_id'], os.getpid())) + logging.info('Housekeeper spawned {} model updater process for repo {} with PID {}'.format(job['model'], job['repos'][0]['repo_id'], os.getpid())) try: compatible_worker_found = False @@ -69,25 +70,25 @@ def updater_process(broker_host, broker_port, broker, model, given, delay, repos if not compatible_worker_found: for worker in list(broker._getvalue().keys()): # logging.info("{} {} {} {}".format(worker, model, broker[worker], given)) - if model in broker[worker]['models'] and given in broker[worker]['given']: + if job['model'] in broker[worker]['models'] and job['given'] in broker[worker]['given']: compatible_worker_found = True if compatible_worker_found: logging.info("Housekeeper recognized that the broker has a worker that " + - "can handle the {} model... beginning to distribute maintained tasks".format(model)) + "can handle the {} model... beginning to distribute maintained tasks".format(job['model'])) time.sleep(4) while True: logging.info('Housekeeper updating {} model with given {}...'.format( - model, given[0])) + job['model'], job['given'][0])) - if given[0] == 'git_url' or given[0] == 'github_url': - for repo in repos: - if given[0] == 'github_url' and 'github.com' not in repo['repo_git']: + if job['given'][0] == 'git_url' or job['given'][0] == 'github_url': + for repo in job['repos']: + if job['given'][0] == 'github_url' and 'github.com' not in repo['repo_git']: continue - given_key = 'git_url' if given[0] == 'git_url' else 'github_url' + given_key = 'git_url' if job['given'][0] == 'git_url' else 'github_url' task = { - "job_type": "MAINTAIN", - "models": [model], - "display_name": "{} model for url: {}".format(model, repo['repo_git']), + "job_type": job['job_type'] if 'job_type' in job else 'MAINTAIN', + "models": [job['model']], + "display_name": "{} model for url: {}".format(job['model'], repo['repo_git']), "given": {} } task['given'][given_key] = repo['repo_git'] @@ -99,14 +100,14 @@ def updater_process(broker_host, broker_port, broker, model, given, delay, repos except Exception as e: logging.info("Error encountered: {}".format(e)) - time.sleep(0.5) - elif given[0] == 'repo_group': + time.sleep(60) + elif job['given'][0] == 'repo_group': task = { - "job_type": "MAINTAIN", - "models": [model], - "display_name": "{} model for repo group id: {}".format(model, repo_group_id), + "job_type": job['job_type'] if 'job_type' in job else 'MAINTAIN', + "models": [job['model']], + "display_name": "{} model for repo group id: {}".format(job['model'], repo_group_id), "given": { - "repo_group": repos + "repo_group": job['repos'] } } try: @@ -115,8 +116,8 @@ def updater_process(broker_host, broker_port, broker, model, given, delay, repos except Exception as e: logging.info("Error encountered: {}".format(e)) - logging.info("Housekeeper finished sending {} tasks to the broker for it to distribute to your worker(s)".format(len(repos))) - time.sleep(delay) + logging.info("Housekeeper finished sending {} tasks to the broker for it to distribute to your worker(s)".format(len(job['repos']))) + time.sleep(job['delay']) break time.sleep(3) @@ -126,16 +127,15 @@ def updater_process(broker_host, broker_port, broker, model, given, delay, repos except: raise - def __updater(self, updates=None): + def __updater(self, jobs=None): """ Starts update processes """ logging.info("Starting update processes...") - if updates is None: - updates = self.__updatable - for update in updates: - up = Process(target=self.updater_process, args=(self.broker_host,self.broker_port, self.broker, update['model'], - update['given'], update['delay'], update['repos'], update['repo_group_id']), daemon=True) + if jobs is None: + jobs = self.__updatable + for job in jobs: + up = Process(target=self.updater_process, args=(self.broker_host, self.broker_port, self.broker, job), daemon=True) up.start() self.__processes.append(up) @@ -171,11 +171,17 @@ def shutdown_updates(self): def prep_jobs(self, jobs): for job in jobs: - if 'repo_group_id' in job: + if 'repo_group_id' in job or 'repo_ids' in job: # If RG id is 0 then it just means to query all repos where_and = 'AND' if job['model'] in ['issues', 'pull_requests'] else 'WHERE' - where_condition = '{} repo_group_id = {}'.format(where_and, job['repo_group_id']) if job['repo_group_id'] != 0 else '' + where_condition = '{} repo_group_id = {}'.format(where_and, job['repo_group_id']) if 'repo_group_id' in job and job['repo_group_id'] != 0 else '' repoUrlSQL = s.sql.text(""" + SELECT * + FROM repo + WHERE repo_id IN ({}) + """.format( # Generator expression + ",".join(str(x) for x in job['repo_ids']))) if 'repo_ids' in job else s.sql.text( + """ SELECT a.repo_id, a.repo_git, b.pull_request_count, d.repo_id AS pr_repo_id, count(*) AS pr_collected_count, (b.pull_request_count-count(*)) AS prs_missing, abs(cast((count(*))AS DOUBLE PRECISION)/NULLIF(cast(b.pull_request_count AS DOUBLE PRECISION), 0)) AS ratio_abs, @@ -250,9 +256,9 @@ def prep_jobs(self, jobs): """.format(where_condition)) if job['model'] == 'issues' else s.sql.text(""" SELECT repo_git, repo_id FROM repo {} ORDER BY repo_id ASC """.format(where_condition)) - rs = pd.read_sql(repoUrlSQL, self.db, params={}) - if len(rs) == 0: - logging.info("Trying to send tasks for repo group with id: {}, but the repo group does not contain any repos".format(job['repo_group_id'])) + reorganized_repos = pd.read_sql(repoUrlSQL, self.db, params={}) + if len(reorganized_repos) == 0: + logging.info("Trying to send tasks for repo group, but the repo group does not contain any repos") continue if 'starting_repo_id' in job: @@ -294,15 +300,12 @@ def prep_jobs(self, jobs): if history_df.iloc[0]['status'] == 'Stopped': self.history_id = int(history_df.iloc[0]['history_id']) finishing_task = True - # last_id += 1 #update to match history tuple val rather than just increment - # Rearrange repos so the one after the last one that # was completed will be ran first (if prioritized ordering is not available/enabled) - reorganized_repos = rs if job['model'] not in ['issues', 'pull_requests']: - before_repos = rs.loc[rs['repo_id'].astype(int) < last_id] - after_repos = rs.loc[rs['repo_id'].astype(int) >= last_id] + before_repos = reorganized_repos.loc[reorganized_repos['repo_id'].astype(int) < last_id] + after_repos = reorganized_repos.loc[reorganized_repos['repo_id'].astype(int) >= last_id] reorganized_repos = after_repos.append(before_repos) diff --git a/augur/routes/broker.py b/augur/routes/broker.py index ad7d9005bc..583ed01df5 100644 --- a/augur/routes/broker.py +++ b/augur/routes/broker.py @@ -73,19 +73,28 @@ def task(): worker_found = False compatible_workers = {} + + # For every worker the broker is aware of that can fill the task's given and model for worker_id in [id for id in list(server.broker._getvalue().keys()) if model in server.broker[id]['models'] and given in server.broker[id]['given']]: if type(server.broker[worker_id]._getvalue()) != dict: continue - compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]] = compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]] if worker_id.split('.')[len(worker_id.split('.'))-2] in compatible_workers else {'task_load': len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), 'worker_id': worker_id} - if (len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue'])) < min([compatible_workers[w]['task_load'] for w in compatible_workers.keys() if worker_id.split('.')[len(worker_id.split('.'))-2] == w]): - compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]]['task_load'] = len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']) - compatible_workers[worker_id.split('.')[len(worker_id.split('.'))-2]]['worker_id'] = worker_id + + # Group workers by type (all gh workers grouped together etc) + worker_type = worker_id.split('.')[len(worker_id.split('.'))-2] + compatible_workers[worker_type] = compatible_workers[worker_type] if worker_type in compatible_workers else {'task_load': len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), 'worker_id': worker_id} + + # Make worker that is prioritized the one with the smallest sum of task queues + if (len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue'])) < min([compatible_workers[w]['task_load'] for w in compatible_workers.keys() if worker_type == w]): + compatible_workers[worker_type]['task_load'] = len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']) + compatible_workers[worker_type]['worker_id'] = worker_id for worker_type in compatible_workers.keys(): worker_id = compatible_workers[worker_type]['worker_id'] worker = server.broker[worker_id] logging.info("Compatible worker: {} with smallest task load: {} found to work on task: {}".format(worker_id, len(server.broker[worker_id]['user_queue']) + len(server.broker[worker_id]['maintain_queue']), task)) + # if task['job_type'] == "SELECTIVE": + if task['job_type'] == "UPDATE": worker['user_queue'].append(task) logging.info("Added task for model: {}. New length of worker {}'s user queue: {}".format(model, worker_id, str(len(server.broker[worker_id]['user_queue'])))) From d4e820fa7e76fcb555b1c9c657aaeb63da247e4b Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Sat, 14 Dec 2019 15:08:40 -0600 Subject: [PATCH 147/250] Remove big print in director initialization Signed-off-by: Matt Snell --- workers/spdx_worker/director.py | 1 - 1 file changed, 1 deletion(-) diff --git a/workers/spdx_worker/director.py b/workers/spdx_worker/director.py index eb6e03bc5d..b0f5f4ba27 100644 --- a/workers/spdx_worker/director.py +++ b/workers/spdx_worker/director.py @@ -26,7 +26,6 @@ with open("dosocs2-example.conf") as configfile: content = configfile.read() - print(content) content_new = re.sub('(connection_uri = .*)\n', "connection_uri = " + configtools + "\n", content) with open("dosocs2.conf","w+") as outfile: outfile.write(content_new) From edf646f98e35ac69eab4781b5d2efc4a8a8d2792 Mon Sep 17 00:00:00 2001 From: gabe-heim Date: Sat, 14 Dec 2019 15:45:53 -0600 Subject: [PATCH 148/250] register task failure support for git url --- workers/standard_methods.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/workers/standard_methods.py b/workers/standard_methods.py index 69bf0e6bb6..6e6b99f5ad 100644 --- a/workers/standard_methods.py +++ b/workers/standard_methods.py @@ -45,9 +45,14 @@ def register_task_completion(self, logging, entry_info, repo_id, model): 'worker_id': self.config['id'], 'job_type': self.working_on, 'repo_id': repo_id, - 'github_url': entry_info['given']['github_url'], 'job_model': model } + key = 'github_url' if 'github_url' in entry_info['given'] else 'git_url' if 'git_url' in entry_info['given'] else "INVALID_GIVEN" + task_completed[key] = entry_info['given']['github_url'] if 'github_url' in entry_info['given'] else entry_info['given']['git_url'] if 'git_url' in entry_info['given'] else "INVALID_GIVEN" + if key == 'INVALID_GIVEN': + register_task_failure(self, logging, entry_info, repo_id, "INVALID_GIVEN: not github nor git url") + return + # Add to history table task_history = { "repo_id": repo_id, @@ -182,3 +187,5 @@ def update_gh_rate_limit(self, logging, response): index = self.oauths.index(new_oauth) self.oauths[0], self.oauths[index] = self.oauths[index], self.oauths[0] logging.info("Using oauth: {}".format(self.oauths[0])) + + From 931789e4d235bd4b56f3af44c4797cb5d9f8253e Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 16:19:14 -0600 Subject: [PATCH 149/250] Fix linux badge worker collection method Signed-off-by: Carter Landis --- .../linux_badge_worker/runtime.py | 52 ++++++++----- .../linux_badge_worker/worker.py | 73 +++++++++++-------- 2 files changed, 76 insertions(+), 49 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/runtime.py b/workers/linux_badge_worker/linux_badge_worker/runtime.py index f2b5048786..64e57abfa9 100644 --- a/workers/linux_badge_worker/linux_badge_worker/runtime.py +++ b/workers/linux_badge_worker/linux_badge_worker/runtime.py @@ -1,7 +1,6 @@ -from flask import Flask, jsonify, request -import click +from flask import Flask, jsonify, request, Response +import click, os, json, requests, logging from linux_badge_worker.worker import BadgeWorker -import os, json, logging def create_server(app, gw): """ Consists of AUGWOP endpoints for the broker to communicate to this worker @@ -16,7 +15,7 @@ def augwop_task(): """ if request.method == 'POST': #will post a task to be added to the queue logging.info("Sending to work on task: {}".format(str(request.json))) - app.gh_worker.task = request.json + app.linux_badge_worker.task = request.json return Response(response=request.json, status=200, mimetype="application/json") @@ -24,7 +23,10 @@ def augwop_task(): return jsonify({ "status": "not implemented" }) - + return Response(response=request.json, + status=200, + mimetype="application/json") + @app.route("/AUGWOP/heartbeat", methods=['GET']) def heartbeat(): if request.method == 'GET': @@ -36,7 +38,7 @@ def heartbeat(): def augwop_config(): """ Retrieve worker's config """ - return app.gh_worker.config + return app.linux_badge_worker.config @click.command() @click.option('--augur-url', default='http://localhost:5000/', help='Augur URL') @@ -44,24 +46,27 @@ def augwop_config(): @click.option('--port', default=51235, help='Port') def main(augur_url, host, port): """ Declares singular worker and creates the server and flask app that it will be running on + logging.basicConfig(level=logging.DEBUG) """ + logging.basicConfig(level=logging.INFO) app = Flask(__name__) + #load credentials credentials = read_config("Database", use_main_config=1) server = read_config("Server", use_main_config=1) worker_info = read_config("Workers", use_main_config=1)['linux_badge_worker'] worker_port = worker_info['port'] if 'port' in worker_info else port - while True: - try: - r = requests.get("http://{}:{}/AUGWOP/heartbeat".format(server['host'],worker_port)).json() - if 'status' in r: - if r['status'] == 'alive': - worker_port += 1 - except: - break + # while True: + # try: + # r = requests.get("http://{}:{}/AUGWOP/heartbeat".format(server['host'],worker_port)).json() + # if 'status' in r: + # if r['status'] == 'alive': + # worker_port += 1 + # except: + # break - logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) + # logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) config = { "id": "com.augurlabs.core.badge_worker", @@ -82,11 +87,20 @@ def main(augur_url, host, port): } #create instance of the worker - app.gh_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config - + app.linux_badge_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config create_server(app, None) - print(server['host'], worker_port) - app.run(debug=app.debug, host=server['host'], port=worker_port) + logging.info("Starting Flask App with pid: " + str(os.getpid()) + "...") + + # app.run(debug=app.debug, host=server['host'], port=worker_port) + if app.linux_badge_worker._child is not None: + app.linux_badge_worker._child.terminate() + try: + requests.post('http://{}:{}/api/unstable/workers/remove'.format(server['host'],server['port']), json={"id": config['id']}) + except: + pass + + logging.info("Killing Flask App: " + str(os.getpid())) + os.kill(os.getpid(), 9) def read_config(section, name=None, environment_variable=None, default=None, config_file='augur.config.json', no_config_file=0, use_main_config=0): diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 12cddc0484..0e8fb979b9 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -1,11 +1,11 @@ from multiprocessing import Process, Queue from urllib.parse import urlparse -import requests, logging, os +import requests, logging, os, json +from urllib.parse import quote import pandas as pd import sqlalchemy as s from sqlalchemy.ext.automap import automap_base from sqlalchemy import MetaData -import ipdb from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class CollectorTask: @@ -40,15 +40,16 @@ def __init__(self, config, task=None): self._child = None self._queue = Queue() self.config = config - logging.basicConfig(filename='worker_{}.log'.format(self.config['id'].split('.')[len(self.config['id'].split('.')) - 1]), filemode='w', level=logging.INFO) + # logging.basicConfig(filename='worker_{}.log'.format(self.config['id'].split('.')[len(self.config['id'].split('.')) - 1]), filemode='w', level=logging.INFO) logging.info('Worker (PID: {}) initializing...'.format(str(os.getpid()))) self.db = None self.table = None self.finishing_task = False self.working_on = None + self.results_counter = 0 self.specs = { - "id": "com.augurlabs.core.badge_worker", + "id": self.config['id'], "location": self.config['location'], "qualifications": [ { @@ -90,7 +91,24 @@ def __init__(self, config, task=None): self.table = Base.classes.repo_badging.__table__ # Send broker hello message - connect_to_broker(self, logging.getLogger()) + # connect_to_broker(self, logging.getLogger()) + + message = { + "job_type": 'MAINTAIN', + "models": ['badges'], + "given": { 'git_url': 'github.com/chaoss/augur.git'} + } + + self.badges_model(message, 1) + self.badges_model(message, 2) + + message = { + "job_type": 'MAINTAIN', + "models": ['badges'], + "given": { 'git_url': 'github.com/ccarterlandis/augur.git'} + } + + self.badges_model(message, 2) def update_config(self, config): """ Method to update config and set a default @@ -140,38 +158,33 @@ def cancel(self): """ self._task = None - def badges_model(self, num): + def badges_model(self, entry_info, repo_id): """ Data collection and storage method Query the github api for contributors and issues (not yet implemented) """ - git_url = str(num) - extension = "/en/projects/" + str(git_url) + ".json" + git_url = entry_info['given']['git_url'] + extension = "/projects.json?pq=https://" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension - print("******************") - print(url) logging.info("Hitting endpoint: " + url + " ...\n") - r = requests.get(url=url) - data = r.json() - if data != 0 and "404" not in str(r): - #print(data) - print("FOUND") - # data[0]['repo_id'] = entry_info['repo_id'] - - # ipdb.set_trace() - self.db.execute(self.table.insert().values(data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) - # logging.info("Inserted badging info for repo: " + str(entry_info['repo_id']) + "\n") - """ - task_completed = entry_info - task_completed['worker_id'] = self.config['id'] - - logging.info("Telling broker we completed task: " + str(task_completed) + "\n\n") - requests.post('http://localhost:5000/api/completed_task', json=entry_info['git_url']) - """ + response = requests.get(url=url) + data = response.json() + + if data != []: + + df = pd.read_sql(s.sql.text("SELECT repo_id FROM augur_data.repo_badging"), self.db) + repo_IDs = df['repo_id'].values.tolist() + + if repo_id in repo_IDs: + logging.info("Updating existing data for " + git_url) + self.db.execute(self.table.update().where(self.table.c.repo_id == repo_id).values(data=data)) + else: + logging.info("Inserting new badging data for " + git_url) + self.db.execute(self.table.insert().values(repo_id=repo_id, data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) + + # register_task_completion(self, logging, entry_info, repo_id, "badges") else: - logging.info("Endpoint did not return any data.") - #if num < 3500: - # self.collect(num + 1) + logging.info("No CII data found for " + git_url) def collect(self): """ Function to process each entry in the worker's task queue From 119b1c4e7f21a014fa1ad9e47e56a5314be4f2ca Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 16:19:14 -0600 Subject: [PATCH 150/250] Fix linux badge worker collection method Signed-off-by: Carter Landis --- .../linux_badge_worker/runtime.py | 31 +++++++---- .../linux_badge_worker/worker.py | 54 +++++++++---------- 2 files changed, 47 insertions(+), 38 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/runtime.py b/workers/linux_badge_worker/linux_badge_worker/runtime.py index f2b5048786..82e83bf9a9 100644 --- a/workers/linux_badge_worker/linux_badge_worker/runtime.py +++ b/workers/linux_badge_worker/linux_badge_worker/runtime.py @@ -1,7 +1,6 @@ -from flask import Flask, jsonify, request -import click +from flask import Flask, jsonify, request, Response +import click, os, json, requests, logging from linux_badge_worker.worker import BadgeWorker -import os, json, logging def create_server(app, gw): """ Consists of AUGWOP endpoints for the broker to communicate to this worker @@ -16,7 +15,7 @@ def augwop_task(): """ if request.method == 'POST': #will post a task to be added to the queue logging.info("Sending to work on task: {}".format(str(request.json))) - app.gh_worker.task = request.json + app.linux_badge_worker.task = request.json return Response(response=request.json, status=200, mimetype="application/json") @@ -24,7 +23,10 @@ def augwop_task(): return jsonify({ "status": "not implemented" }) - + return Response(response=request.json, + status=200, + mimetype="application/json") + @app.route("/AUGWOP/heartbeat", methods=['GET']) def heartbeat(): if request.method == 'GET': @@ -36,7 +38,7 @@ def heartbeat(): def augwop_config(): """ Retrieve worker's config """ - return app.gh_worker.config + return app.linux_badge_worker.config @click.command() @click.option('--augur-url', default='http://localhost:5000/', help='Augur URL') @@ -44,9 +46,11 @@ def augwop_config(): @click.option('--port', default=51235, help='Port') def main(augur_url, host, port): """ Declares singular worker and creates the server and flask app that it will be running on + logging.basicConfig(level=logging.DEBUG) """ app = Flask(__name__) + #load credentials credentials = read_config("Database", use_main_config=1) server = read_config("Server", use_main_config=1) worker_info = read_config("Workers", use_main_config=1)['linux_badge_worker'] @@ -82,11 +86,20 @@ def main(augur_url, host, port): } #create instance of the worker - app.gh_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config - + app.linux_badge_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config create_server(app, None) - print(server['host'], worker_port) + logging.info("Starting Flask App with pid: " + str(os.getpid()) + "...") + app.run(debug=app.debug, host=server['host'], port=worker_port) + if app.linux_badge_worker._child is not None: + app.linux_badge_worker._child.terminate() + try: + requests.post('http://{}:{}/api/unstable/workers/remove'.format(server['host'],server['port']), json={"id": config['id']}) + except: + pass + + logging.info("Killing Flask App: " + str(os.getpid())) + os.kill(os.getpid(), 9) def read_config(section, name=None, environment_variable=None, default=None, config_file='augur.config.json', no_config_file=0, use_main_config=0): diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 12cddc0484..6be0ee1847 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -1,11 +1,11 @@ from multiprocessing import Process, Queue from urllib.parse import urlparse -import requests, logging, os +import requests, logging, os, json +from urllib.parse import quote import pandas as pd import sqlalchemy as s from sqlalchemy.ext.automap import automap_base from sqlalchemy import MetaData -import ipdb from workers.standard_methods import register_task_completion, register_task_failure, connect_to_broker, update_gh_rate_limit, record_model_process class CollectorTask: @@ -40,15 +40,16 @@ def __init__(self, config, task=None): self._child = None self._queue = Queue() self.config = config - logging.basicConfig(filename='worker_{}.log'.format(self.config['id'].split('.')[len(self.config['id'].split('.')) - 1]), filemode='w', level=logging.INFO) + # logging.basicConfig(filename='worker_{}.log'.format(self.config['id'].split('.')[len(self.config['id'].split('.')) - 1]), filemode='w', level=logging.INFO) logging.info('Worker (PID: {}) initializing...'.format(str(os.getpid()))) self.db = None self.table = None self.finishing_task = False self.working_on = None + self.results_counter = 0 self.specs = { - "id": "com.augurlabs.core.badge_worker", + "id": self.config['id'], "location": self.config['location'], "qualifications": [ { @@ -140,38 +141,33 @@ def cancel(self): """ self._task = None - def badges_model(self, num): + def badges_model(self, entry_info, repo_id): """ Data collection and storage method Query the github api for contributors and issues (not yet implemented) """ - git_url = str(num) - extension = "/en/projects/" + str(git_url) + ".json" + git_url = entry_info['given']['git_url'] + extension = "/projects.json?pq=https://" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension - print("******************") - print(url) logging.info("Hitting endpoint: " + url + " ...\n") - r = requests.get(url=url) - data = r.json() - if data != 0 and "404" not in str(r): - #print(data) - print("FOUND") - # data[0]['repo_id'] = entry_info['repo_id'] - - # ipdb.set_trace() - self.db.execute(self.table.insert().values(data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) - # logging.info("Inserted badging info for repo: " + str(entry_info['repo_id']) + "\n") - """ - task_completed = entry_info - task_completed['worker_id'] = self.config['id'] - - logging.info("Telling broker we completed task: " + str(task_completed) + "\n\n") - requests.post('http://localhost:5000/api/completed_task', json=entry_info['git_url']) - """ + response = requests.get(url=url) + data = response.json() + + if data != []: + + df = pd.read_sql(s.sql.text("SELECT repo_id FROM augur_data.repo_badging"), self.db) + repo_IDs = df['repo_id'].values.tolist() + + if repo_id in repo_IDs: + logging.info("Updating existing data for " + git_url) + self.db.execute(self.table.update().where(self.table.c.repo_id == repo_id).values(data=data)) + else: + logging.info("Inserting new badging data for " + git_url) + self.db.execute(self.table.insert().values(repo_id=repo_id, data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) + + # register_task_completion(self, logging, entry_info, repo_id, "badges") else: - logging.info("Endpoint did not return any data.") - #if num < 3500: - # self.collect(num + 1) + logging.info("No CII data found for " + git_url) def collect(self): """ Function to process each entry in the worker's task queue From e94670a0c538a7aeae981a7c634928681b4b1248 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 16:24:02 -0600 Subject: [PATCH 151/250] Uncomment sections left over from testing Signed-off-by: Carter Landis --- .../linux_badge_worker/worker.py | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 0e8fb979b9..6be0ee1847 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -91,24 +91,7 @@ def __init__(self, config, task=None): self.table = Base.classes.repo_badging.__table__ # Send broker hello message - # connect_to_broker(self, logging.getLogger()) - - message = { - "job_type": 'MAINTAIN', - "models": ['badges'], - "given": { 'git_url': 'github.com/chaoss/augur.git'} - } - - self.badges_model(message, 1) - self.badges_model(message, 2) - - message = { - "job_type": 'MAINTAIN', - "models": ['badges'], - "given": { 'git_url': 'github.com/ccarterlandis/augur.git'} - } - - self.badges_model(message, 2) + connect_to_broker(self, logging.getLogger()) def update_config(self, config): """ Method to update config and set a default From 465810b17a5e52ef867a4185f3855a86d2141dc9 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 17:58:59 -0600 Subject: [PATCH 152/250] Add port to badge worker ID and remove tuple update behavior Signed-off-by: Carter Landis --- augur/metrics/repo_meta/repo_meta.py | 13 ++++++------ .../linux_badge_worker/runtime.py | 2 +- .../linux_badge_worker/worker.py | 20 +++++-------------- 3 files changed, 13 insertions(+), 22 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 251394ffab..572411b9b9 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -186,16 +186,16 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): :param repo_id: The repository's repo_id, defaults to None :return: CII best parctices badge level """ - # Welcome to the Twilight Zone cii_best_practices_badge_SQL = s.sql.text(""" SELECT data - from augur_data.repo_badging - where repo_id = :repo_id; - """) + FROM augur_data.repo_badging + WHERE repo_id = :repo_id + ORDER BY created_at DESC + LIMIT 1 - params = {'repo_id': repo_id} + """) - raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params=params)\ + raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params={'repo_id': repo_id}) badging_data = raw_df.iloc[0,0] @@ -208,6 +208,7 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): result[item[0]] = item[1] return pd.DataFrame(result, index=[0]) + @annotate(tag='forks') def forks(self, repo_group_id, repo_id=None): """ diff --git a/workers/linux_badge_worker/linux_badge_worker/runtime.py b/workers/linux_badge_worker/linux_badge_worker/runtime.py index c84bf54ff0..7a40d097ed 100644 --- a/workers/linux_badge_worker/linux_badge_worker/runtime.py +++ b/workers/linux_badge_worker/linux_badge_worker/runtime.py @@ -69,7 +69,7 @@ def main(augur_url, host, port): logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) config = { - "id": "com.augurlabs.core.badge_worker", + "id": "com.augurlabs.core.badge_worker.{}".format(worker_port), "location": "http://{}:{}".format(server['host'],worker_port), "broker_host": server['host'], "broker_port": server['port'], diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 6be0ee1847..68da8de01f 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -149,23 +149,13 @@ def badges_model(self, entry_info, repo_id): extension = "/projects.json?pq=https://" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension - logging.info("Hitting endpoint: " + url + " ...\n") - response = requests.get(url=url) - data = response.json() + logging.info("Hitting CII endpoint: " + url + " ...\n") + data = requests.get(url=url).json() if data != []: - - df = pd.read_sql(s.sql.text("SELECT repo_id FROM augur_data.repo_badging"), self.db) - repo_IDs = df['repo_id'].values.tolist() - - if repo_id in repo_IDs: - logging.info("Updating existing data for " + git_url) - self.db.execute(self.table.update().where(self.table.c.repo_id == repo_id).values(data=data)) - else: - logging.info("Inserting new badging data for " + git_url) - self.db.execute(self.table.insert().values(repo_id=repo_id, data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) - - # register_task_completion(self, logging, entry_info, repo_id, "badges") + logging.info("Inserting badging data for " + git_url) + self.db.execute(self.table.insert().values(repo_id=repo_id, data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) + register_task_completion(self, logging, entry_info, repo_id, "badges") else: logging.info("No CII data found for " + git_url) From 112b7560cb9ee95340ebb30fbd22facdefa4993c Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 18:28:24 -0600 Subject: [PATCH 153/250] Remove scheme prefix from badge worker endpoint generation Signed-off-by: Carter Landis --- workers/linux_badge_worker/linux_badge_worker/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 68da8de01f..bc11616bce 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -146,7 +146,7 @@ def badges_model(self, entry_info, repo_id): Query the github api for contributors and issues (not yet implemented) """ git_url = entry_info['given']['git_url'] - extension = "/projects.json?pq=https://" + (quote(git_url[0:-4])) + extension = "/projects.json?pq=" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension logging.info("Hitting CII endpoint: " + url + " ...\n") From f0568a818b937db680731dfa5ac64e83e2e84a65 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 19:09:53 -0600 Subject: [PATCH 154/250] Fix cii_best_practices_badge metric Signed-off-by: Carter Landis --- augur/metrics/repo_meta/repo_meta.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/augur/metrics/repo_meta/repo_meta.py b/augur/metrics/repo_meta/repo_meta.py index 572411b9b9..27b779dec3 100644 --- a/augur/metrics/repo_meta/repo_meta.py +++ b/augur/metrics/repo_meta/repo_meta.py @@ -7,6 +7,8 @@ import pandas as pd from augur.util import logger, annotate, add_metrics +import ipdb + @annotate(tag='code-changes') def code_changes(self, repo_group_id, repo_id=None, period='day', begin_date=None, end_date=None): """ @@ -192,15 +194,14 @@ def cii_best_practices_badge(self, repo_group_id, repo_id=None): WHERE repo_id = :repo_id ORDER BY created_at DESC LIMIT 1 - """) raw_df = pd.read_sql(cii_best_practices_badge_SQL, self.database, params={'repo_id': repo_id}) - badging_data = raw_df.iloc[0,0] + badging_data = raw_df.iloc[0,0][0] result = { - "repo_name": raw_df.iloc[0,0], + "repo_name": badging_data['name'], } for item in badging_data.items(): From 4380553ea78b73fb1604039ab46850357f7537ee Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sat, 14 Dec 2019 20:32:49 -0600 Subject: [PATCH 155/250] Add oauth to linux_badge_worker Signed-off-by: Carter Landis --- .../linux_badge_worker/__init__.py | 8 +- .../linux_badge_worker/runtime.py | 62 +++++----- .../linux_badge_worker/worker.py | 115 +++++++++++++----- 3 files changed, 116 insertions(+), 69 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/__init__.py b/workers/linux_badge_worker/linux_badge_worker/__init__.py index 4010601825..b163dd2349 100644 --- a/workers/linux_badge_worker/linux_badge_worker/__init__.py +++ b/workers/linux_badge_worker/linux_badge_worker/__init__.py @@ -1,5 +1,9 @@ -"""augur_worker_github - Augur Worker that collects GitHub data""" +"""linux_badge_worker - Augur worker that collects CII badging data""" + +__tool_source__ = 'Linux Badge Worker' +__tool_version__ = '0.1.0' +__data_source__ = 'CII Badging API' -__version__ = '0.1.0' __author__ = 'Augur Team ' __all__ = [] + diff --git a/workers/linux_badge_worker/linux_badge_worker/runtime.py b/workers/linux_badge_worker/linux_badge_worker/runtime.py index 7a40d097ed..6e08e9f9c3 100644 --- a/workers/linux_badge_worker/linux_badge_worker/runtime.py +++ b/workers/linux_badge_worker/linux_badge_worker/runtime.py @@ -2,7 +2,7 @@ import click, os, json, requests, logging from linux_badge_worker.worker import BadgeWorker -def create_server(app, gw): +def create_server(app): """ Consists of AUGWOP endpoints for the broker to communicate to this worker Can post a new task to be added to the workers queue Can retrieve current status of the worker @@ -48,7 +48,7 @@ def main(augur_url, host, port): """ Declares singular worker and creates the server and flask app that it will be running on logging.basicConfig(level=logging.DEBUG) """ - logging.basicConfig(level=logging.INFO) + app = Flask(__name__) #load credentials @@ -59,41 +59,44 @@ def main(augur_url, host, port): while True: try: - r = requests.get("http://{}:{}/AUGWOP/heartbeat".format(server['host'],worker_port)).json() - if 'status' in r: - if r['status'] == 'alive': + response = requests.get("http://{}:{}/AUGWOP/heartbeat".format(server['host'],worker_port)).json() + if 'status' in response: + if response['status'] == 'alive': worker_port += 1 except: break logging.basicConfig(filename='worker_{}.log'.format(worker_port), filemode='w', level=logging.INFO) + logging.basicConfig(level=logging.INFO) config = { - "id": "com.augurlabs.core.badge_worker.{}".format(worker_port), - "location": "http://{}:{}".format(server['host'],worker_port), - "broker_host": server['host'], - "broker_port": server['port'], - "host": credentials["host"], - "password": credentials["password"], - "port": credentials["port"], - "user": credentials["user"], - "database": credentials["database"], - "table": "repo_badging", - "endpoint": "https://bestpractices.coreinfrastructure.org", - "display_name": "", - "description": "", - "required": 1, - "type": "string" - } - - #create instance of the worker + "id": "com.augurlabs.core.badge_worker.{}".format(worker_port), + "location": "http://{}:{}".format(server['host'], worker_port), + "broker_host": server['host'], + "broker_port": server['port'], + "host": credentials["host"], + "password": credentials["password"], + "port": credentials["port"], + "user": credentials["user"], + "database": credentials["database"], + "table": "repo_badging", + "endpoint": "https://bestpractices.coreinfrastructure.org", + "display_name": "", + "description": "", + "required": 1, + "type": "string" + } + app.linux_badge_worker = BadgeWorker(config) # declares the worker that will be running on this server with specified config - create_server(app, None) + + create_server(app) logging.info("Starting Flask App with pid: " + str(os.getpid()) + "...") app.run(debug=app.debug, host=server['host'], port=worker_port) + if app.linux_badge_worker._child is not None: app.linux_badge_worker._child.terminate() + try: requests.post('http://{}:{}/api/unstable/workers/remove'.format(server['host'],server['port']), json={"id": config['id']}) except: @@ -102,7 +105,6 @@ def main(augur_url, host, port): logging.info("Killing Flask App: " + str(os.getpid())) os.kill(os.getpid(), 9) - def read_config(section, name=None, environment_variable=None, default=None, config_file='augur.config.json', no_config_file=0, use_main_config=0): """ Read a variable in specified section of the config file, unless provided an environment variable @@ -110,12 +112,10 @@ def read_config(section, name=None, environment_variable=None, default=None, con :param section: location of given variable :param name: name of variable """ - - __config_bad = False if use_main_config == 0: __config_file_path = os.path.abspath(os.getenv('AUGUR_CONFIG_FILE', config_file)) - else: + else: __config_file_path = os.path.abspath(os.path.dirname(os.path.dirname(os.getcwd())) + '/augur.config.json') __config_location = os.path.dirname(__config_file_path) @@ -126,7 +126,6 @@ def read_config(section, name=None, environment_variable=None, default=None, con try: __config_file = open(__config_file_path, 'r+') except: - # logger.info('Couldn\'t open {}, attempting to create. If you have a augur.cfg, you can convert it to a json file using "make to-json"'.format(config_file)) if not os.path.exists(__config_location): os.makedirs(__config_location) __config_file = open(__config_file_path, 'w+') @@ -134,12 +133,9 @@ def read_config(section, name=None, environment_variable=None, default=None, con # Options to export the loaded configuration as environment variables for Docker - if __export_env: - export_filename = os.getenv('AUGUR_ENV_EXPORT_FILE', 'augur.cfg.sh') __export_file = open(export_filename, 'w+') - # logger.info('Exporting {} to environment variable export statements in {}'.format(config_file, export_filename)) __export_file.write('#!/bin/bash\n') # Load the config file and return [section][name] @@ -154,11 +150,9 @@ def read_config(section, name=None, environment_variable=None, default=None, con except json.decoder.JSONDecodeError as e: if not __config_bad: __using_config_file = False - # logger.error('%s could not be parsed, using defaults. Fix that file, or delete it and run this again to regenerate it. Error: %s', __config_file_path, str(e)) __config = __default_config try: return(__config[section][name]) except: return(__config[section]) - diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index bc11616bce..8a3a307c21 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -1,7 +1,12 @@ -from multiprocessing import Process, Queue -from urllib.parse import urlparse -import requests, logging, os, json +import os +from datetime import datetime +import logging +import requests +import json from urllib.parse import quote +from multiprocessing import Process, Queue + +from linux_badge_worker import __data_source__, __tool_source__, __tool_version__ import pandas as pd import sqlalchemy as s from sqlalchemy.ext.automap import automap_base @@ -29,21 +34,21 @@ def dump_queue(queue): return result class BadgeWorker: - """ Worker that collects data from the Github API and stores it in our database - task: most recent task the broker added to the worker's queue - child: current process of the queue being ran - queue: queue of tasks to be fulfilled - config: holds info like api keys, descriptions, and database connection strings + """ Worker that collects repo badging data from CII + config: database credentials, broker information, and ID """ def __init__(self, config, task=None): - self._task = task - self._child = None - self._queue = Queue() - self.config = config - # logging.basicConfig(filename='worker_{}.log'.format(self.config['id'].split('.')[len(self.config['id'].split('.')) - 1]), filemode='w', level=logging.INFO) logging.info('Worker (PID: {}) initializing...'.format(str(os.getpid()))) + self.config = config + self.db = None - self.table = None + self.repo_badging_table = None + + self._task = task + self._queue = Queue() + self._child = None + + self.history_id = None self.finishing_task = False self.working_on = None self.results_counter = 0 @@ -60,38 +65,75 @@ def __init__(self, config, task=None): "config": [self.config] } - """ - Connect to GHTorrent - - :param dbstr: The [database string](http://docs.sqlalchemy.org/en/latest/core/engines.html) to connect to the GHTorrent database - """ - self.DB_STR = 'postgresql://{}:{}@{}:{}/{}'.format( - self.config['user'], self.config['password'], self.config['host'], self.config['port'], self.config['database'] + self._db_str = 'postgresql://{}:{}@{}:{}/{}'.format( + self.config['user'], + self.config['password'], + self.config['host'], + self.config['port'], + self.config['database'] ) - logging.info(self.DB_STR) - dbschema='augur_data' # Searches left-to-right - self.db = s.create_engine(self.DB_STR, poolclass=s.pool.NullPool, + dbschema = 'augur_data' + self.db = s.create_engine(self._db_str, poolclass=s.pool.NullPool, connect_args={'options': '-csearch_path={}'.format(dbschema)}) - # produce our own MetaData object + helper_schema = 'augur_operations' + self.helper_db = s.create_engine(self._db_str, poolclass = s.pool.NullPool, + connect_args={'options': '-csearch_path={}'.format(helper_schema)}) + logging.info("Database connection established...") + metadata = MetaData() + helper_metadata = MetaData() - # we can reflect it ourselves from a database, using options - # such as 'only' to limit what tables we look at... metadata.reflect(self.db, only=['repo_badging']) + helper_metadata.reflect(self.helper_db, only=['worker_history', 'worker_job', 'worker_oauth']) - # we can then produce a set of mappings from this MetaData. Base = automap_base(metadata=metadata) + HelperBase = automap_base(metadata=helper_metadata) - # calling prepare() just sets up mapped classes and relationships. Base.prepare() - - # mapped classes are ready - self.table = Base.classes.repo_badging.__table__ + HelperBase.prepare() + + self.history_table = HelperBase.classes.worker_history.__table__ + self.job_table = HelperBase.classes.worker_job.__table__ + self.repo_badging_table = Base.classes.repo_badging.__table__ + logging.info("ORM setup complete...") + + # Organize different api keys/oauths available + self.oauths = [] + self.headers = None + + # Endpoint to hit solely to retrieve rate limit information from headers of the response + url = "https://api.github.com/users/gabe-heim" + + # Make a list of api key in the config combined w keys stored in the database + oauth_sql = s.sql.text(""" + SELECT * FROM worker_oauth WHERE access_token <> '{}' + """.format(0)) + + for oauth in [{'oauth_id': 0, 'access_token': 0}] + json.loads(pd.read_sql(oauth_sql, self.helper_db, params={}).to_json(orient="records")): + self.headers = {'Authorization': 'token %s' % oauth['access_token']} + logging.info("Getting rate limit info for oauth: {}".format(oauth)) + response = requests.get(url=url, headers=self.headers) + self.oauths.append({ + 'oauth_id': oauth['oauth_id'], + 'access_token': oauth['access_token'], + 'rate_limit': int(response.headers['X-RateLimit-Remaining']), + 'seconds_to_reset': (datetime.fromtimestamp(int(response.headers['X-RateLimit-Reset'])) \ + - datetime.now()).total_seconds() + }) + logging.info("Found OAuth available for use: {}".format(self.oauths[-1])) + + if len(self.oauths) == 0: + logging.info("No API keys detected, please include one in your config or in the worker_oauths table in the augur_operations schema of your database\n") + + # First key to be used will be the one specified in the config (first element in + # self.oauths array will always be the key in use) + self.headers = {'Authorization': 'token %s' % self.oauths[0]['access_token']} # Send broker hello message connect_to_broker(self, logging.getLogger()) + logging.info("Connected to the broker...") def update_config(self, config): """ Method to update config and set a default @@ -154,7 +196,14 @@ def badges_model(self, entry_info, repo_id): if data != []: logging.info("Inserting badging data for " + git_url) - self.db.execute(self.table.insert().values(repo_id=repo_id, data=data, tool_source="linux_badge_worker", tool_version="1.0", data_source="CII Badging API")) + self.db.execute(self.repo_badging_table.insert()\ + .values(repo_id=repo_id, + data=data, + tool_source=__tool_source__, + tool_version=__tool_version__, + data_source=__data_source__)) + + self.results_counter += 1 register_task_completion(self, logging, entry_info, repo_id, "badges") else: logging.info("No CII data found for " + git_url) From a4787c5df4a0e5ba562a7ca3f74b3aa5461748d7 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Sun, 15 Dec 2019 22:40:09 +0000 Subject: [PATCH 156/250] carter's worker.py edits --- .../linux_badge_worker/worker.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 8a3a307c21..4d846301a6 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -133,7 +133,7 @@ def __init__(self, config, task=None): # Send broker hello message connect_to_broker(self, logging.getLogger()) - logging.info("Connected to the broker...") + logging.info("Connected to the broker...\n") def update_config(self, config): """ Method to update config and set a default @@ -172,7 +172,7 @@ def task(self, value): logging.info("Focused task is OFF\n") else: self.finishing_task = False - logging.info("focused task is OFF\n") + logging.info("Focused task is OFF\n") self._task = value self.run() @@ -185,13 +185,14 @@ def cancel(self): def badges_model(self, entry_info, repo_id): """ Data collection and storage method - Query the github api for contributors and issues (not yet implemented) + Query the CII API and store the result in the DB for the badges model """ + logging.info("Collecting data for {}".format(git_url)) git_url = entry_info['given']['git_url'] extension = "/projects.json?pq=" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension - logging.info("Hitting CII endpoint: " + url + " ...\n") + logging.info("Hitting CII endpoint: " + url + " ...") data = requests.get(url=url).json() if data != []: @@ -204,9 +205,8 @@ def badges_model(self, entry_info, repo_id): data_source=__data_source__)) self.results_counter += 1 - register_task_completion(self, logging, entry_info, repo_id, "badges") else: - logging.info("No CII data found for " + git_url) + logging.info("No CII data found for {}\n".format(git_url)) def collect(self): """ Function to process each entry in the worker's task queue @@ -240,6 +240,8 @@ def collect(self): register_task_failure(self, logging, message, repo_id, e) pass + register_task_completion(self, logging, message, repo_id, "badges") + def run(self): """ Kicks off the processing of the queue if it is not already being processed Gets run whenever a new task is added From 85e4f3ef38e2031063b8dd33ec02e897e9b004b8 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sun, 15 Dec 2019 17:08:04 -0600 Subject: [PATCH 157/250] Swap misplaced lines in linux_badge_worker Signed-off-by: Carter Landis --- workers/linux_badge_worker/linux_badge_worker/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/linux_badge_worker/linux_badge_worker/worker.py b/workers/linux_badge_worker/linux_badge_worker/worker.py index 4d846301a6..0891629600 100644 --- a/workers/linux_badge_worker/linux_badge_worker/worker.py +++ b/workers/linux_badge_worker/linux_badge_worker/worker.py @@ -187,8 +187,8 @@ def badges_model(self, entry_info, repo_id): """ Data collection and storage method Query the CII API and store the result in the DB for the badges model """ - logging.info("Collecting data for {}".format(git_url)) git_url = entry_info['given']['git_url'] + logging.info("Collecting data for {}".format(git_url)) extension = "/projects.json?pq=" + (quote(git_url[0:-4])) url = self.config['endpoint'] + extension From 699bf9a43c9a17c6cf202bdf3025ef515b5e6542 Mon Sep 17 00:00:00 2001 From: Carter Landis Date: Sun, 15 Dec 2019 17:19:07 -0600 Subject: [PATCH 158/250] Fix broken cii-best-practices-badge tests Signed-off-by: Carter Landis --- augur/metrics/repo_meta/test_repo_meta_functions.py | 5 +---- augur/metrics/repo_meta/test_repo_meta_routes.py | 9 +-------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/augur/metrics/repo_meta/test_repo_meta_functions.py b/augur/metrics/repo_meta/test_repo_meta_functions.py index 4491c7d325..f23d30cb0a 100644 --- a/augur/metrics/repo_meta/test_repo_meta_functions.py +++ b/augur/metrics/repo_meta/test_repo_meta_functions.py @@ -49,10 +49,7 @@ def test_lines_changed_by_author(metrics): def test_cii_best_practices_badge(metrics): # repo - assert int(metrics.cii_best_practices_badge(21, 21252).iloc[0]['tiered_percentage']) >= 85 - - # repo_group - assert int(metrics.cii_best_practices_badge(21).iloc[0]['tiered_percentage']) > 1 + assert int(metrics.cii_best_practices_badge(21, 21000).iloc[0]['tiered_percentage']) >= 85 def test_languages(metrics): # TODO diff --git a/augur/metrics/repo_meta/test_repo_meta_routes.py b/augur/metrics/repo_meta/test_repo_meta_routes.py index 057e72be42..f536f64b88 100644 --- a/augur/metrics/repo_meta/test_repo_meta_routes.py +++ b/augur/metrics/repo_meta/test_repo_meta_routes.py @@ -49,15 +49,8 @@ def test_sub_projects_by_repo(metrics): assert len(data) >= 1 assert data[0]["sub_project_count"] > 0 -def test_cii_best_practices_badge_by_group(metrics): - response = requests.get('http://localhost:5000/api/unstable/repo-groups/21/cii-best-practices-badge') - print(response.content) - data = response.json() - assert response.status_code == 200 - assert len(data) >= 1 - def test_cii_best_practices_badge_by_repo(metrics): - response = requests.get('http://localhost:5000/api/unstable/repo-groups/21/repos/21252/cii-best-practices-badge') + response = requests.get('http://localhost:5000/api/unstable/repo-groups/21/repos/21000/cii-best-practices-badge') print(response) data = response.json() assert response.status_code == 200 From 13a8b465f748194452c493464d2e3474a78c051b Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 16 Dec 2019 15:16:47 +0900 Subject: [PATCH 159/250] updated documentation for the repo version of the cii_best_practices_badge API docs. Was missing the `repos/:repo_id/` portion. --- augur/metrics/repo_meta/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/augur/metrics/repo_meta/routes.py b/augur/metrics/repo_meta/routes.py index 670ba2ae9a..a097973902 100644 --- a/augur/metrics/repo_meta/routes.py +++ b/augur/metrics/repo_meta/routes.py @@ -238,7 +238,7 @@ def create_repo_meta_routes(server): server.addRepoGroupMetric(metrics.cii_best_practices_badge, 'cii-best-practices-badge') """ - @api {get} /repo-groups/:repo_group_id/cii-best-practices-badge CII Best Practices Badge (Repo) + @api {get} /repo-groups/:repo_group_id/repos/:repo_id/cii-best-practices-badge CII Best Practices Badge (Repo) @apiName cii-best-practices-badge-repo @apiGroup Risk @apiDescription The CII Best Practices Badge level. From 21ef522a50475567c19283331e1362d1cfa0501a Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 16 Dec 2019 00:42:10 -0600 Subject: [PATCH 160/250] Fix license count discrepancy Signed-off-by: Matt Snell --- .gitignore | 1 + .../src/components/charts/CoverageCard.vue | 50 +++++++++++++++++-- frontend/src/views/RiskMetrics.vue | 1 + 3 files changed, 47 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3b8a50ce36..05d765978e 100644 --- a/.gitignore +++ b/.gitignore @@ -136,3 +136,4 @@ dmypy.json ./spdx-scanner/dosocs2.conf spdx-scanner/dosocs2.conf spdx-scanner/augur-spdx/ +workers/spdx_worker/dosocs2.conf diff --git a/frontend/src/components/charts/CoverageCard.vue b/frontend/src/components/charts/CoverageCard.vue index 0e00f14529..2ac5c62b5a 100644 --- a/frontend/src/components/charts/CoverageCard.vue +++ b/frontend/src/components/charts/CoverageCard.vue @@ -12,9 +12,9 @@
-

{{ values[0]['sbom_scan']['License Coverage']['TotalFiles'] }} -
{{ values[0]['sbom_scan']['License Coverage']['DeclaredLicenseFiles'] }} -
{{ values[0]['sbom_scan']['License Coverage']['PercentTotalLicenseCoverage'] }}

+

{{ UsableValues[0] }} +
{{ UsableValues[1] }} +
{{ UsableValues[2] }}%

@@ -34,6 +34,8 @@ title: String, data: Object, source: String, + datatwo: Object, + sourcetwo: String, headers: Array, fields: Array, } @@ -44,6 +46,23 @@ Spinner }, computed: { + UsableValues: function() { + let licenseCount = 0 + for (let el of this.valuestwo) { + let shortname = el['short_name']; + if (shortname != "No Assertion"){ + licenseCount += el["count"] + } + } + const totalFiles = this.values[0]['sbom_scan']['License Coverage']['TotalFiles'] + let prepercent = licenseCount / totalFiles + let percent = prepercent * 100 + let fixed = 2 || 0; + fixed = Math.pow(10, fixed); + let licenseCoverage = Math.floor(percent * fixed) / fixed; + let arrayofV = [totalFiles, licenseCount, licenseCoverage] + return arrayofV + }, ...mapGetters('compare',[ 'comparedRepos', 'base' @@ -61,6 +80,7 @@ // data props loaded: boolean = false values: any[] = [] + valuestwo: any[] = [] // compare getters base!:any @@ -71,10 +91,9 @@ created () { if (this.data) { - this.loaded = true + this.loaded = true this.values = this.data[this.source] } - else { this.endpoint({endpoints:[this.source],repos:[this.base]}).then((tuples:any) => { let ref = this.base.url || this.base.repo_name @@ -89,6 +108,27 @@ this.loaded = true }) } + + if (this.datatwo) { + this.loaded = true + console.log("DATA LOADED") + this.valuestwo = this.datatwo[this.sourcetwo] + } + else { + this.endpoint({endpoints:[this.sourcetwo],repos:[this.base]}).then((tuples:any) => { + let ref = this.base.url || this.base.repo_name + if (ref.includes('/')) + ref = ref.split('/')[ref.split('/').length - 1] + let valuestwo:any = [] + Object.keys(tuples[ref]).forEach((endpoint) => { + valuestwo = tuples[ref][endpoint] + }) + this.valuestwo = valuestwo + console.log("Coverage card valuestwo", valuestwo, ref) + this.loaded = true + }) + } + } } diff --git a/frontend/src/views/RiskMetrics.vue b/frontend/src/views/RiskMetrics.vue index d945b7624d..b428688606 100644 --- a/frontend/src/views/RiskMetrics.vue +++ b/frontend/src/views/RiskMetrics.vue @@ -67,6 +67,7 @@

Date: Mon, 16 Dec 2019 00:56:58 -0600 Subject: [PATCH 161/250] hotfix (forgot to ts-ignore some this.* calls) Signed-off-by: Matt Snell --- frontend/src/components/charts/CoverageCard.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/charts/CoverageCard.vue b/frontend/src/components/charts/CoverageCard.vue index 2ac5c62b5a..74866d3859 100644 --- a/frontend/src/components/charts/CoverageCard.vue +++ b/frontend/src/components/charts/CoverageCard.vue @@ -48,12 +48,14 @@ computed: { UsableValues: function() { let licenseCount = 0 + // @ts-ignore for (let el of this.valuestwo) { let shortname = el['short_name']; if (shortname != "No Assertion"){ licenseCount += el["count"] } } + // @ts-ignore const totalFiles = this.values[0]['sbom_scan']['License Coverage']['TotalFiles'] let prepercent = licenseCount / totalFiles let percent = prepercent * 100 From 03e404d2ed84be4160356b4384fce659069b3d45 Mon Sep 17 00:00:00 2001 From: Sean Goggins Date: Mon, 16 Dec 2019 19:42:19 +0900 Subject: [PATCH 162/250] fixed a committer counting issues in the API. It was counting the total commits, not the number of committers. This API call only affected the risk page. --- augur/metrics/commit/commit.py | 70 ++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 21 deletions(-) diff --git a/augur/metrics/commit/commit.py b/augur/metrics/commit/commit.py index e9385735b2..315462fda0 100644 --- a/augur/metrics/commit/commit.py +++ b/augur/metrics/commit/commit.py @@ -30,35 +30,63 @@ def committers(self, repo_group_id, repo_id=None, begin_date=None, end_date=None if repo_id: committersSQL = s.sql.text( """ - SELECT - date_trunc(:period, commits.cmt_author_date::date) as date, + SELECT DATE, repo_name, rg_name, - count(cmt_author_name) + COUNT ( author_count ) FROM - commits, repo, repo_groups - WHERE - commits.repo_id = :repo_id AND commits.repo_id = repo.repo_id - AND repo.repo_group_id = repo_groups.repo_group_id - AND commits.cmt_author_date BETWEEN :begin_date and :end_date - GROUP BY date, repo_name, rg_name - ORDER BY date DESC + ( + SELECT + date_trunc(:period, commits.cmt_author_date::date) as date, + repo_name, + rg_name, + cmt_author_name, + cmt_author_email, + COUNT ( cmt_author_name ) AS author_count + FROM + commits, repo, repo_groups + WHERE + commits.repo_id = :repo_id AND commits.repo_id = repo.repo_id + AND repo.repo_group_id = repo_groups.repo_group_id + AND commits.cmt_author_date BETWEEN :begin_date and :end_date + GROUP BY date, repo_name, rg_name, cmt_author_name, cmt_author_email + ORDER BY date DESC + ) C + GROUP BY + C.DATE, + repo_name, + rg_name + ORDER BY C.DATE desc """ ) else: committersSQL = s.sql.text( """ - SELECT - date_trunc(:period, commits.cmt_author_date::date) as date, - rg_name, - count(cmt_author_name) - FROM - commits, repo, repo_groups - WHERE - repo.repo_group_id = repo_groups.repo_group_id AND repo.repo_group_id = :repo_group_id - AND repo.repo_id = commits.repo_id - AND commits.cmt_author_date BETWEEN :begin_date and :end_date - GROUP BY date, rg_name + SELECT DATE, + rg_name, + COUNT ( author_count ) + FROM + ( + SELECT + date_trunc(:period, commits.cmt_author_date::date) as date, + rg_name, + cmt_author_name, + cmt_author_email, + COUNT ( cmt_author_name ) AS author_count + FROM + commits, repo, repo_groups + WHERE + commits.repo_id = repo.repo_id + AND repo.repo_group_id = repo_groups.repo_group_id + AND commits.cmt_author_date BETWEEN :begin_date and :end_date + AND repo.repo_group_id = :repo_group_id + GROUP BY date, rg_name, cmt_author_name, cmt_author_email + ORDER BY date DESC + ) C + GROUP BY + C.DATE, + rg_name + ORDER BY C.DATE desc """ ) From c1cf207959e579951f3ddf2ef4ee1684a5480eb7 Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 16 Dec 2019 10:54:21 -0600 Subject: [PATCH 163/250] Add section to license coverage card and clean up Signed-off-by: Matt Snell --- frontend/src/components/charts/CoverageCard.vue | 8 +++++--- frontend/src/components/charts/OsiCard.vue | 4 ++-- frontend/src/views/RiskMetrics.vue | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/charts/CoverageCard.vue b/frontend/src/components/charts/CoverageCard.vue index 74866d3859..338cb4fe83 100644 --- a/frontend/src/components/charts/CoverageCard.vue +++ b/frontend/src/components/charts/CoverageCard.vue @@ -5,16 +5,17 @@

There are no license coverage metrics available for this repository.

+

{{ UsableValues[2] }}%

Total Files
Files with Declared Licenses -
License Coverage

+
Files without Licenses

{{ UsableValues[0] }}
{{ UsableValues[1] }} -
{{ UsableValues[2] }}%

+
{{ UsableValues[3] }}

@@ -62,7 +63,8 @@ let fixed = 2 || 0; fixed = Math.pow(10, fixed); let licenseCoverage = Math.floor(percent * fixed) / fixed; - let arrayofV = [totalFiles, licenseCount, licenseCoverage] + let differenceCount = totalFiles - licenseCount + let arrayofV = [totalFiles, licenseCount, licenseCoverage, differenceCount] return arrayofV }, ...mapGetters('compare',[ diff --git a/frontend/src/components/charts/OsiCard.vue b/frontend/src/components/charts/OsiCard.vue index 4e85f926ea..8359033a3c 100644 --- a/frontend/src/components/charts/OsiCard.vue +++ b/frontend/src/components/charts/OsiCard.vue @@ -3,8 +3,8 @@ From 9aa093107bd9e6c4a41de1b292c3c05778e9000d Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 16 Dec 2019 13:18:48 -0600 Subject: [PATCH 164/250] Fix repo overview License Coverage (And some spaces?) Look at line 116 for change Signed-off-by: Matt Snell --- frontend/src/views/RepoOverview.vue | 104 ++++++++++++++-------------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/frontend/src/views/RepoOverview.vue b/frontend/src/views/RepoOverview.vue index 0b8c74e9a1..1dd2c35103 100755 --- a/frontend/src/views/RepoOverview.vue +++ b/frontend/src/views/RepoOverview.vue @@ -13,7 +13,7 @@ Overview Risk --> - + @@ -26,12 +26,12 @@
-->

- + - + - + - +

- + - - @@ -139,12 +140,12 @@ - + - - @@ -152,15 +153,15 @@ -
+

-->
- -
+
- -
+
- -
+
- - - -
+
- @@ -251,12 +252,12 @@
- @@ -264,7 +265,7 @@ - + - From bfd57a69f1d2e17bc9a76165a47cd1a50718fbbb Mon Sep 17 00:00:00 2001 From: Matt Snell Date: Mon, 16 Dec 2019 15:53:08 -0600 Subject: [PATCH 165/250] Unify Loading for all API calls on CoverageCard Signed-off-by: Matt Snell --- .../src/components/charts/CoverageCard.vue | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/charts/CoverageCard.vue b/frontend/src/components/charts/CoverageCard.vue index 338cb4fe83..a5dfb78d9e 100644 --- a/frontend/src/components/charts/CoverageCard.vue +++ b/frontend/src/components/charts/CoverageCard.vue @@ -1,8 +1,8 @@