diff --git a/data analysis/tbarequest.py b/data analysis/tbarequest.py index 15d02925..b7337a13 100644 --- a/data analysis/tbarequest.py +++ b/data analysis/tbarequest.py @@ -32,6 +32,12 @@ __all__ = [ import requests #as this code is public, i'm not putting 2022's API key in here. just add it as a var in your script and go +#requests basic team info +def req_team_info(team,apikey): + headers={'X-TBA-Auth-Key':apikey} + r=requests.get('https://www.thebluealliance.com/api/v3/team/frc'+str(team)+'/simple/',headers=headers) + return r + #requests a list of events that a team went to def req_team_events(team,year,apikey): headers={'X-TBA-Auth-Key':apikey} @@ -65,7 +71,7 @@ def req_event_elim_alli(event_key, apikey): #requests oprs and dprs def req_event_opr(event_key, apikey): headers={'X-TBA-Auth-Key':apikey} - r=requests.get('https://www.thebluealliance.com/api/v3//event/'+str(event_key)+'/oprs', headers=headers) + r=requests.get('https://www.thebluealliance.com/api/v3/event/'+str(event_key)+'/oprs', headers=headers) return r diff --git a/website/public/scout/scripts.js b/website/public/scout/scripts.js index a11dc5b9..e9c792c5 100644 --- a/website/public/scout/scripts.js +++ b/website/public/scout/scripts.js @@ -356,7 +356,7 @@ function subReport() { var name = x[i].children[0].id; push[`${series}-${user.uid.toString()}`.toString()][name] = document.querySelector('input[name="' + name + '"]:checked').value; } else if (x[i].children[1].tagName == "TEXTAREA") { - push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].innerHTML; + push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].value; } } var x = document.getElementById('repsec2').children; @@ -369,7 +369,7 @@ function subReport() { var name = x[i].children[0].id; push[`${series}-${user.uid.toString()}`.toString()][name] = document.querySelector('input[name="' + name + '"]:checked').value; } else if (x[i].children[1].tagName == "TEXTAREA") { - push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].innerHTML; + push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].value; } } var x = document.getElementById('repsec3').children;