From 382e9e2ba778421857f7017cbe032e774f8f5f6f Mon Sep 17 00:00:00 2001 From: Joseph Wong Date: Tue, 13 Jan 2026 14:56:34 -0500 Subject: [PATCH 1/2] remove devcop references to test deployment --- src/index.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.php b/src/index.php index 181d0fa..12ee218 100644 --- a/src/index.php +++ b/src/index.php @@ -66,7 +66,6 @@
-

Note: To authenticate against the test server, you can user username "DevCoPStudent" and password "/10T41.Vf\0w~=O". Members can visit the Dev CoP to access additional accounts.

From 9d41488a98b59d8c4ac8311cb23d658f2f3c9881 Mon Sep 17 00:00:00 2001 From: Joseph Wong Date: Tue, 13 Jan 2026 16:42:15 -0500 Subject: [PATCH 2/2] remove defaults button and js --- src/index.php | 1 - src/js/main.js | 2 -- src/js/profiles.js | 12 ------------ 3 files changed, 15 deletions(-) diff --git a/src/index.php b/src/index.php index 12ee218..89b66cf 100644 --- a/src/index.php +++ b/src/index.php @@ -32,7 +32,6 @@
- diff --git a/src/js/main.js b/src/js/main.js index e153f3a..5dceb58 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -181,8 +181,6 @@ $(document).ready(function() { if ((document.getElementById("appIDField").value == '' ) && (document.getElementById("appKeyField").value == '')) { if (localStorage.getItem('lastProfile') == 'authProfile') { loadProfile('authProfile'); - } else { - loadDefaults(); } } diff --git a/src/js/profiles.js b/src/js/profiles.js index f0504e7..438e243 100644 --- a/src/js/profiles.js +++ b/src/js/profiles.js @@ -105,15 +105,3 @@ function removeProfile(profileName) { localStorage.setItem('userProfiles', p.toString()); } -function loadDefaults() { - var defaultProfile = "New Profile"; - $('#hostField').val("devcop.brightspace.com"); - $('#portField').val("443"); - $('#appIDField').val('31brpbcCLsVim_K4jJ8vzw'); - $('#appKeyField').val('sagYSTT_HOts39qrGQTFWA'); - $('#schemeField').prop('checked', true); - $('#profileNameField').parent().show(); - $('#rmProfile').hide(); - $("#userProfiles").val(defaultProfile); - localStorage.setItem('lastProfile', defaultProfile); -}