├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── auth └── oidc │ ├── .github │ ├── PULL_REQUEST_TEMPLATE.txt │ └── workflows │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── auth.php │ ├── binding_username_claim.php │ ├── change_binding_username_claim_tool.php │ ├── classes │ ├── adminsetting │ │ ├── auth_oidc_admin_setting_iconselect.php │ │ ├── auth_oidc_admin_setting_label.php │ │ ├── auth_oidc_admin_setting_loginflow.php │ │ ├── auth_oidc_admin_setting_redirecturi.php │ │ └── iconselect.css │ ├── event │ │ ├── action_failed.php │ │ ├── user_authed.php │ │ ├── user_connected.php │ │ ├── user_created.php │ │ ├── user_disconnected.php │ │ ├── user_loggedin.php │ │ └── user_rename_attempt.php │ ├── form │ │ ├── application.php │ │ ├── binding_username_claim.php │ │ ├── change_binding_username_claim_tool_form1.php │ │ ├── change_binding_username_claim_tool_form2.php │ │ └── disconnect.php │ ├── httpclient.php │ ├── httpclientinterface.php │ ├── jwt.php │ ├── loginflow │ │ ├── authcode.php │ │ ├── base.php │ │ └── rocreds.php │ ├── observers.php │ ├── oidcclient.php │ ├── preview.php │ ├── privacy │ │ └── provider.php │ ├── process.php │ ├── task │ │ ├── cleanup_oidc_sid.php │ │ └── cleanup_oidc_state_and_token.php │ ├── tests │ │ ├── mockhttpclient.php │ │ └── mockoidcclient.php │ ├── upload_process_tracker.php │ └── utils.php │ ├── cleanupoidctokens.php │ ├── db │ ├── access.php │ ├── events.php │ ├── install.php │ ├── install.xml │ ├── tasks.php │ └── upgrade.php │ ├── example.csv │ ├── index.php │ ├── js │ └── module.js │ ├── lang │ ├── cs │ │ └── auth_oidc.php │ ├── de │ │ └── auth_oidc.php │ ├── en │ │ └── auth_oidc.php │ ├── es │ │ └── auth_oidc.php │ ├── fi │ │ └── auth_oidc.php │ ├── fr │ │ └── auth_oidc.php │ ├── it │ │ └── auth_oidc.php │ ├── ja │ │ └── auth_oidc.php │ ├── nl │ │ └── auth_oidc.php │ ├── pl │ │ └── auth_oidc.php │ └── pt_br │ │ └── auth_oidc.php │ ├── lib.php │ ├── logout.php │ ├── manageapplication.php │ ├── pix │ └── o365.png │ ├── settings.php │ ├── styles.css │ ├── tests │ ├── jwt_test.php │ ├── oidcclient_test.php │ └── privacy_provider_test.php │ ├── ucp.php │ └── version.php ├── blocks └── microsoft │ ├── .github │ ├── PULL_REQUEST_TEMPLATE.txt │ └── workflows │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── block_microsoft.php │ ├── classes │ └── privacy │ │ └── provider.php │ ├── configure_reset.php │ ├── configure_sync.php │ ├── db │ ├── access.php │ ├── caches.php │ └── upgrade.php │ ├── forms.php │ ├── lang │ └── en │ │ └── block_microsoft.php │ ├── lib.php │ ├── pix │ ├── calendar.png │ ├── courserequest.png │ ├── delvecolor.png │ ├── formscolor.png │ ├── msftcolor.png │ ├── msstream.png │ ├── msteams.png │ ├── o365color.png │ ├── onedriveicon.png │ ├── onenotecolor.png │ ├── outlookcolor.png │ ├── sharepointcolor.png │ └── sway.png │ ├── settings.php │ ├── styles.css │ └── version.php ├── local ├── o365 │ ├── .github │ │ ├── PULL_REQUEST_TEMPLATE.txt │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── acp.php │ ├── ajax.php │ ├── amd │ │ ├── build │ │ │ ├── cohort_datasource.min.js │ │ │ ├── cohort_datasource.min.js.map │ │ │ ├── group_datasource.min.js │ │ │ └── group_datasource.min.js.map │ │ └── src │ │ │ ├── cohort_datasource.js │ │ │ └── group_datasource.js │ ├── classes │ │ ├── adminsetting │ │ │ ├── adminconsent.php │ │ │ ├── courseresetteams.php │ │ │ ├── coursesync.php │ │ │ ├── detectoidc.php │ │ │ ├── healthcheck.php │ │ │ ├── moodlesetup.js │ │ │ ├── moodlesetup.php │ │ │ ├── serviceresource.js │ │ │ ├── serviceresource.php │ │ │ ├── tabs.php │ │ │ ├── toollink.php │ │ │ ├── usersynccreationrestriction.php │ │ │ ├── usersyncoptions.php │ │ │ ├── verifysetup.js │ │ │ └── verifysetup.php │ │ ├── event │ │ │ ├── api_call_failed.php │ │ │ ├── calendar_subscribed.php │ │ │ └── calendar_unsubscribed.php │ │ ├── feature │ │ │ ├── calsync │ │ │ │ ├── form │ │ │ │ │ ├── element │ │ │ │ │ │ └── calendar.php │ │ │ │ │ └── subscriptions.php │ │ │ │ ├── main.php │ │ │ │ ├── observers.php │ │ │ │ └── task │ │ │ │ │ ├── importfromoutlook.php │ │ │ │ │ └── syncoldevents.php │ │ │ ├── cohortsync │ │ │ │ └── main.php │ │ │ ├── courserequest │ │ │ │ └── main.php │ │ │ ├── coursesync │ │ │ │ ├── main.php │ │ │ │ ├── observers.php │ │ │ │ └── utils.php │ │ │ ├── sds │ │ │ │ ├── task │ │ │ │ │ └── sync.php │ │ │ │ └── utils.php │ │ │ ├── userconnections │ │ │ │ ├── filtering.php │ │ │ │ └── table.php │ │ │ └── usersync │ │ │ │ └── main.php │ │ ├── form │ │ │ ├── cohort_autocomplete.php │ │ │ ├── cohortsync.php │ │ │ ├── courserequestform.php │ │ │ ├── group_autocomplete.php │ │ │ ├── manualusermatch.php │ │ │ ├── teamsconnection.php │ │ │ ├── teamstabconfiguration.php │ │ │ └── usermatch.php │ │ ├── healthcheck │ │ │ ├── healthcheckinterface.php │ │ │ └── ratelimit.php │ │ ├── httpclient.php │ │ ├── httpclientinterface.php │ │ ├── oauth2 │ │ │ ├── apptoken.php │ │ │ ├── clientdata.php │ │ │ └── token.php │ │ ├── obj │ │ │ └── o365user.php │ │ ├── observers.php │ │ ├── page │ │ │ ├── acp.php │ │ │ ├── ajax.php │ │ │ ├── base.php │ │ │ └── ucp.php │ │ ├── privacy │ │ │ └── provider.php │ │ ├── rest │ │ │ ├── o365api.php │ │ │ └── unified.php │ │ ├── task │ │ │ ├── cohortsync.php │ │ │ ├── coursemembershipsync.php │ │ │ ├── coursesync.php │ │ │ ├── groupmembershipsync.php │ │ │ ├── notifysecretexpiry.php │ │ │ ├── processcourserequestapproval.php │ │ │ ├── processmatchqueue.php │ │ │ ├── updatecourserequeststatus.php │ │ │ └── usersync.php │ │ ├── tests │ │ │ └── mockhttpclient.php │ │ ├── utils.php │ │ └── webservices │ │ │ ├── cohortsync_search_cohorts.php │ │ │ ├── cohortsync_search_groups.php │ │ │ ├── create_onenoteassignment.php │ │ │ ├── delete_onenoteassignment.php │ │ │ ├── exception │ │ │ ├── assignnotfound.php │ │ │ ├── couldnotsavegrade.php │ │ │ ├── invalidassignment.php │ │ │ ├── modulenotfound.php │ │ │ └── sectionnotfound.php │ │ │ ├── read_assignments.php │ │ │ ├── read_courseusers.php │ │ │ ├── read_onenoteassignment.php │ │ │ ├── read_teachercourses.php │ │ │ ├── update_grade.php │ │ │ ├── update_onenoteassignment.php │ │ │ └── utils.php │ ├── cohortsync.php │ ├── courserequest.php │ ├── db │ │ ├── access.php │ │ ├── caches.php │ │ ├── events.php │ │ ├── install.php │ │ ├── install.xml │ │ ├── services.php │ │ ├── tasks.php │ │ └── upgrade.php │ ├── export_manifest.php │ ├── font │ │ ├── segoeui.ttf │ │ ├── segoeuib.ttf │ │ ├── segoeuil.ttf │ │ ├── segoeuisl.ttf │ │ └── seguisb.ttf │ ├── lang │ │ ├── cs │ │ │ └── local_o365.php │ │ ├── de │ │ │ └── local_o365.php │ │ ├── en │ │ │ └── local_o365.php │ │ ├── es │ │ │ └── local_o365.php │ │ ├── fi │ │ │ └── local_o365.php │ │ ├── fr │ │ │ └── local_o365.php │ │ ├── it │ │ │ └── local_o365.php │ │ ├── ja │ │ │ └── local_o365.php │ │ ├── nl │ │ │ └── local_o365.php │ │ ├── pl │ │ │ └── local_o365.php │ │ └── pt_br │ │ │ └── local_o365.php │ ├── lib.php │ ├── pix │ │ ├── color.png │ │ ├── moodle_app_id.png │ │ ├── o365color.png │ │ ├── onenotecolor.png │ │ ├── outline.png │ │ ├── outlookcolor.png │ │ ├── spinner.gif │ │ └── teams_app.png │ ├── scripts │ │ ├── Moodle-EntraID-PowerShell.zip │ │ └── README.md │ ├── settings.php │ ├── sso_end.php │ ├── sso_login.php │ ├── sso_start.php │ ├── styles.css │ ├── teams_tab.php │ ├── teams_tab_configuration.php │ ├── teams_tab_redirect.php │ ├── tests │ │ ├── coursesyncutils_test.php │ │ ├── observers_test.php │ │ ├── privacy_provider_test.php │ │ ├── token_test.php │ │ ├── usersync_test.php │ │ ├── webservices_onenoteassignment_test.php │ │ └── webservices_utils_test.php │ ├── ucp.php │ └── version.php ├── office365 │ ├── .github │ │ ├── PULL_REQUEST_TEMPLATE.txt │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── classes │ │ └── privacy │ │ │ └── provider.php │ ├── lang │ │ ├── cs │ │ │ └── local_office365.php │ │ ├── de │ │ │ └── local_office365.php │ │ ├── en │ │ │ └── local_office365.php │ │ ├── es │ │ │ └── local_office365.php │ │ ├── fi │ │ │ └── local_office365.php │ │ ├── fr │ │ │ └── local_office365.php │ │ ├── it │ │ │ └── local_office365.php │ │ ├── ja │ │ │ └── local_office365.php │ │ ├── nl │ │ │ └── local_office365.php │ │ ├── pl │ │ │ └── local_office365.php │ │ └── pt_br │ │ │ └── local_office365.php │ └── version.php └── onenote │ ├── .github │ ├── PULL_REQUEST_TEMPLATE.txt │ └── workflows │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── classes │ ├── api │ │ ├── base.php │ │ └── o365.php │ ├── privacy │ │ └── provider.php │ └── utils.php │ ├── db │ ├── install.xml │ └── upgrade.php │ ├── lang │ ├── cs │ │ └── local_onenote.php │ ├── de │ │ └── local_onenote.php │ ├── en │ │ └── local_onenote.php │ ├── es │ │ └── local_onenote.php │ ├── fi │ │ └── local_onenote.php │ ├── fr │ │ └── local_onenote.php │ ├── it │ │ └── local_onenote.php │ ├── ja │ │ └── local_onenote.php │ ├── nl │ │ └── local_onenote.php │ ├── pl │ │ └── local_onenote.php │ └── pt_br │ │ └── local_onenote.php │ ├── onenote_actions.php │ ├── pix │ └── onenote.png │ ├── styles.css │ ├── tests │ ├── generator │ │ └── lib.php │ ├── onenoteapi_test.php │ └── privacy_provider_test.php │ └── version.php ├── mod └── assign │ ├── feedback │ └── onenote │ │ ├── .github │ │ ├── PULL_REQUEST_TEMPLATE.txt │ │ └── workflows │ │ │ └── ci.yml │ │ ├── .gitlab-ci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── amd │ │ ├── build │ │ │ ├── onenotedelete.min.js │ │ │ └── onenotedelete.min.js.map │ │ └── src │ │ │ └── onenotedelete.js │ │ ├── backup │ │ └── moodle2 │ │ │ ├── backup_assignfeedback_onenote_subplugin.class.php │ │ │ └── restore_assignfeedback_onenote_subplugin.class.php │ │ ├── classes │ │ └── privacy │ │ │ └── provider.php │ │ ├── db │ │ ├── install.php │ │ ├── install.xml │ │ ├── services.php │ │ └── upgrade.php │ │ ├── externallib.php │ │ ├── lang │ │ ├── cs │ │ │ └── assignfeedback_onenote.php │ │ ├── de │ │ │ └── assignfeedback_onenote.php │ │ ├── en │ │ │ └── assignfeedback_onenote.php │ │ ├── es │ │ │ └── assignfeedback_onenote.php │ │ ├── fi │ │ │ └── assignfeedback_onenote.php │ │ ├── fr │ │ │ └── assignfeedback_onenote.php │ │ ├── it │ │ │ └── assignfeedback_onenote.php │ │ ├── ja │ │ │ └── assignfeedback_onenote.php │ │ ├── nl │ │ │ └── assignfeedback_onenote.php │ │ ├── pl │ │ │ └── assignfeedback_onenote.php │ │ └── pt_br │ │ │ └── assignfeedback_onenote.php │ │ ├── lib.php │ │ ├── locallib.php │ │ ├── settings.php │ │ ├── tests │ │ └── privacy │ │ │ └── provider_test.php │ │ └── version.php │ └── submission │ └── onenote │ ├── .github │ ├── PULL_REQUEST_TEMPLATE.txt │ └── workflows │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── backup │ └── moodle2 │ │ ├── backup_assignsubmission_onenote_subplugin.class.php │ │ └── restore_assignsubmission_onenote_subplugin.class.php │ ├── classes │ ├── event │ │ ├── assessable_uploaded.php │ │ ├── submission_created.php │ │ └── submission_updated.php │ └── privacy │ │ └── provider.php │ ├── db │ └── install.xml │ ├── lang │ ├── cs │ │ └── assignsubmission_onenote.php │ ├── de │ │ └── assignsubmission_onenote.php │ ├── en │ │ └── assignsubmission_onenote.php │ ├── es │ │ └── assignsubmission_onenote.php │ ├── fi │ │ └── assignsubmission_onenote.php │ ├── fr │ │ └── assignsubmission_onenote.php │ ├── it │ │ └── assignsubmission_onenote.php │ ├── ja │ │ └── assignsubmission_onenote.php │ ├── nl │ │ └── assignsubmission_onenote.php │ ├── pl │ │ └── assignsubmission_onenote.php │ └── pt_br │ │ └── assignsubmission_onenote.php │ ├── lib.php │ ├── locallib.php │ ├── settings.php │ ├── tests │ └── privacy │ │ └── provider_test.php │ └── version.php ├── repository └── office365 │ ├── .github │ ├── PULL_REQUEST_TEMPLATE.txt │ └── workflows │ │ └── ci.yml │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── classes │ └── privacy │ │ └── provider.php │ ├── db │ ├── access.php │ └── caches.php │ ├── lang │ ├── cs │ │ └── repository_office365.php │ ├── de │ │ └── repository_office365.php │ ├── en │ │ └── repository_office365.php │ ├── es │ │ └── repository_office365.php │ ├── fi │ │ └── repository_office365.php │ ├── fr │ │ └── repository_office365.php │ ├── it │ │ └── repository_office365.php │ ├── ja │ │ └── repository_office365.php │ ├── nl │ │ └── repository_office365.php │ ├── pl │ │ └── repository_office365.php │ └── pt_br │ │ └── repository_office365.php │ ├── lib.php │ ├── pix │ ├── coursegroups.png │ ├── delve.png │ ├── icon.png │ ├── office365video.png │ ├── onedrive.png │ ├── sharepoint.png │ └── trendingaround.png │ └── version.php └── theme └── boost_o365teams ├── .github ├── PULL_REQUEST_TEMPLATE.txt └── workflows │ └── ci.yml ├── .gitlab-ci.yml ├── README.md ├── SECURITY.md ├── amd ├── build │ ├── iframeChecker.min.js │ ├── iframeChecker.min.js.map │ ├── teamsThemeChecker.min.js │ └── teamsThemeChecker.min.js.map └── src │ ├── iframeChecker.js │ └── teamsThemeChecker.js ├── classes ├── output │ └── core_renderer.php └── privacy │ └── provider.php ├── config.php ├── fonts ├── TeamsAssets-Light.eot ├── TeamsAssets-Light.svg ├── TeamsAssets-Light.ttf ├── TeamsAssets-Light.woff ├── TeamsAssets-Light.woff2 ├── TeamsAssets-Regular.eot ├── TeamsAssets-Regular.svg ├── TeamsAssets-Regular.ttf ├── TeamsAssets-Regular.woff ├── TeamsAssets-Regular.woff2 ├── segoeui.ttf ├── segoeuib.ttf ├── segoeuil.ttf ├── segoeuisl.ttf └── seguisb.ttf ├── lang └── en │ └── theme_boost_o365teams.php ├── layout ├── columns2.php └── login.php ├── lib.php ├── pix ├── favicon.ico ├── moodlelogo.png └── screenshot.jpg ├── pix_core └── f │ ├── document-128.png │ ├── document-24.png │ ├── document-256.png │ ├── document-32.png │ ├── document-48.png │ ├── document-64.png │ ├── document-72.png │ ├── document-80.png │ ├── document-96.png │ ├── document.png │ ├── pdf-128.png │ ├── pdf-24.png │ ├── pdf-256.png │ ├── pdf-32.png │ ├── pdf-48.png │ ├── pdf-64.png │ ├── pdf-72.png │ ├── pdf-80.png │ ├── pdf-96.png │ ├── pdf.png │ ├── powerpoint-128.png │ ├── powerpoint-24.png │ ├── powerpoint-256.png │ ├── powerpoint-32.png │ ├── powerpoint-48.png │ ├── powerpoint-64.png │ ├── powerpoint-72.png │ ├── powerpoint-80.png │ ├── powerpoint-96.png │ ├── powerpoint.png │ ├── spreadsheet-128.png │ ├── spreadsheet-24.png │ ├── spreadsheet-256.png │ ├── spreadsheet-32.png │ ├── spreadsheet-48.png │ ├── spreadsheet-64.png │ ├── spreadsheet-72.png │ ├── spreadsheet-80.png │ ├── spreadsheet-96.png │ └── spreadsheet.png ├── renderers.php ├── settings.php ├── style └── custom.css ├── templates ├── columns2.mustache ├── head.mustache └── login.mustache └── version.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/SECURITY.md -------------------------------------------------------------------------------- /auth/oidc/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /auth/oidc/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/.github/workflows/ci.yml -------------------------------------------------------------------------------- /auth/oidc/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/.gitlab-ci.yml -------------------------------------------------------------------------------- /auth/oidc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/LICENSE -------------------------------------------------------------------------------- /auth/oidc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/README.md -------------------------------------------------------------------------------- /auth/oidc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/SECURITY.md -------------------------------------------------------------------------------- /auth/oidc/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/auth.php -------------------------------------------------------------------------------- /auth/oidc/binding_username_claim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/binding_username_claim.php -------------------------------------------------------------------------------- /auth/oidc/change_binding_username_claim_tool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/change_binding_username_claim_tool.php -------------------------------------------------------------------------------- /auth/oidc/classes/adminsetting/auth_oidc_admin_setting_iconselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/adminsetting/auth_oidc_admin_setting_iconselect.php -------------------------------------------------------------------------------- /auth/oidc/classes/adminsetting/auth_oidc_admin_setting_label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/adminsetting/auth_oidc_admin_setting_label.php -------------------------------------------------------------------------------- /auth/oidc/classes/adminsetting/auth_oidc_admin_setting_loginflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/adminsetting/auth_oidc_admin_setting_loginflow.php -------------------------------------------------------------------------------- /auth/oidc/classes/adminsetting/auth_oidc_admin_setting_redirecturi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/adminsetting/auth_oidc_admin_setting_redirecturi.php -------------------------------------------------------------------------------- /auth/oidc/classes/adminsetting/iconselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/adminsetting/iconselect.css -------------------------------------------------------------------------------- /auth/oidc/classes/event/action_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/action_failed.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_authed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_authed.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_connected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_connected.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_created.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_disconnected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_disconnected.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_loggedin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_loggedin.php -------------------------------------------------------------------------------- /auth/oidc/classes/event/user_rename_attempt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/event/user_rename_attempt.php -------------------------------------------------------------------------------- /auth/oidc/classes/form/application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/form/application.php -------------------------------------------------------------------------------- /auth/oidc/classes/form/binding_username_claim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/form/binding_username_claim.php -------------------------------------------------------------------------------- /auth/oidc/classes/form/change_binding_username_claim_tool_form1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/form/change_binding_username_claim_tool_form1.php -------------------------------------------------------------------------------- /auth/oidc/classes/form/change_binding_username_claim_tool_form2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/form/change_binding_username_claim_tool_form2.php -------------------------------------------------------------------------------- /auth/oidc/classes/form/disconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/form/disconnect.php -------------------------------------------------------------------------------- /auth/oidc/classes/httpclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/httpclient.php -------------------------------------------------------------------------------- /auth/oidc/classes/httpclientinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/httpclientinterface.php -------------------------------------------------------------------------------- /auth/oidc/classes/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/jwt.php -------------------------------------------------------------------------------- /auth/oidc/classes/loginflow/authcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/loginflow/authcode.php -------------------------------------------------------------------------------- /auth/oidc/classes/loginflow/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/loginflow/base.php -------------------------------------------------------------------------------- /auth/oidc/classes/loginflow/rocreds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/loginflow/rocreds.php -------------------------------------------------------------------------------- /auth/oidc/classes/observers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/observers.php -------------------------------------------------------------------------------- /auth/oidc/classes/oidcclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/oidcclient.php -------------------------------------------------------------------------------- /auth/oidc/classes/preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/preview.php -------------------------------------------------------------------------------- /auth/oidc/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/privacy/provider.php -------------------------------------------------------------------------------- /auth/oidc/classes/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/process.php -------------------------------------------------------------------------------- /auth/oidc/classes/task/cleanup_oidc_sid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/task/cleanup_oidc_sid.php -------------------------------------------------------------------------------- /auth/oidc/classes/task/cleanup_oidc_state_and_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/task/cleanup_oidc_state_and_token.php -------------------------------------------------------------------------------- /auth/oidc/classes/tests/mockhttpclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/tests/mockhttpclient.php -------------------------------------------------------------------------------- /auth/oidc/classes/tests/mockoidcclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/tests/mockoidcclient.php -------------------------------------------------------------------------------- /auth/oidc/classes/upload_process_tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/upload_process_tracker.php -------------------------------------------------------------------------------- /auth/oidc/classes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/classes/utils.php -------------------------------------------------------------------------------- /auth/oidc/cleanupoidctokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/cleanupoidctokens.php -------------------------------------------------------------------------------- /auth/oidc/db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/access.php -------------------------------------------------------------------------------- /auth/oidc/db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/events.php -------------------------------------------------------------------------------- /auth/oidc/db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/install.php -------------------------------------------------------------------------------- /auth/oidc/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/install.xml -------------------------------------------------------------------------------- /auth/oidc/db/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/tasks.php -------------------------------------------------------------------------------- /auth/oidc/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/db/upgrade.php -------------------------------------------------------------------------------- /auth/oidc/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/example.csv -------------------------------------------------------------------------------- /auth/oidc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/index.php -------------------------------------------------------------------------------- /auth/oidc/js/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/js/module.js -------------------------------------------------------------------------------- /auth/oidc/lang/cs/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/cs/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/de/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/de/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/en/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/en/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/es/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/es/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/fi/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/fi/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/fr/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/fr/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/it/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/it/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/ja/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/ja/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/nl/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/nl/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/pl/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/pl/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lang/pt_br/auth_oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lang/pt_br/auth_oidc.php -------------------------------------------------------------------------------- /auth/oidc/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/lib.php -------------------------------------------------------------------------------- /auth/oidc/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/logout.php -------------------------------------------------------------------------------- /auth/oidc/manageapplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/manageapplication.php -------------------------------------------------------------------------------- /auth/oidc/pix/o365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/pix/o365.png -------------------------------------------------------------------------------- /auth/oidc/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/settings.php -------------------------------------------------------------------------------- /auth/oidc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/styles.css -------------------------------------------------------------------------------- /auth/oidc/tests/jwt_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/tests/jwt_test.php -------------------------------------------------------------------------------- /auth/oidc/tests/oidcclient_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/tests/oidcclient_test.php -------------------------------------------------------------------------------- /auth/oidc/tests/privacy_provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/tests/privacy_provider_test.php -------------------------------------------------------------------------------- /auth/oidc/ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/ucp.php -------------------------------------------------------------------------------- /auth/oidc/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/auth/oidc/version.php -------------------------------------------------------------------------------- /blocks/microsoft/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /blocks/microsoft/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/.github/workflows/ci.yml -------------------------------------------------------------------------------- /blocks/microsoft/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/.gitlab-ci.yml -------------------------------------------------------------------------------- /blocks/microsoft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/LICENSE -------------------------------------------------------------------------------- /blocks/microsoft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/README.md -------------------------------------------------------------------------------- /blocks/microsoft/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/SECURITY.md -------------------------------------------------------------------------------- /blocks/microsoft/block_microsoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/block_microsoft.php -------------------------------------------------------------------------------- /blocks/microsoft/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/classes/privacy/provider.php -------------------------------------------------------------------------------- /blocks/microsoft/configure_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/configure_reset.php -------------------------------------------------------------------------------- /blocks/microsoft/configure_sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/configure_sync.php -------------------------------------------------------------------------------- /blocks/microsoft/db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/db/access.php -------------------------------------------------------------------------------- /blocks/microsoft/db/caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/db/caches.php -------------------------------------------------------------------------------- /blocks/microsoft/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/db/upgrade.php -------------------------------------------------------------------------------- /blocks/microsoft/forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/forms.php -------------------------------------------------------------------------------- /blocks/microsoft/lang/en/block_microsoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/lang/en/block_microsoft.php -------------------------------------------------------------------------------- /blocks/microsoft/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/lib.php -------------------------------------------------------------------------------- /blocks/microsoft/pix/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/calendar.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/courserequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/courserequest.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/delvecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/delvecolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/formscolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/formscolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/msftcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/msftcolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/msstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/msstream.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/msteams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/msteams.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/o365color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/o365color.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/onedriveicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/onedriveicon.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/onenotecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/onenotecolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/outlookcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/outlookcolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/sharepointcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/sharepointcolor.png -------------------------------------------------------------------------------- /blocks/microsoft/pix/sway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/pix/sway.png -------------------------------------------------------------------------------- /blocks/microsoft/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/settings.php -------------------------------------------------------------------------------- /blocks/microsoft/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/styles.css -------------------------------------------------------------------------------- /blocks/microsoft/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/blocks/microsoft/version.php -------------------------------------------------------------------------------- /local/o365/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /local/o365/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/.github/workflows/ci.yml -------------------------------------------------------------------------------- /local/o365/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/.gitlab-ci.yml -------------------------------------------------------------------------------- /local/o365/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/LICENSE -------------------------------------------------------------------------------- /local/o365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/README.md -------------------------------------------------------------------------------- /local/o365/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/SECURITY.md -------------------------------------------------------------------------------- /local/o365/acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/acp.php -------------------------------------------------------------------------------- /local/o365/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/ajax.php -------------------------------------------------------------------------------- /local/o365/amd/build/cohort_datasource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/build/cohort_datasource.min.js -------------------------------------------------------------------------------- /local/o365/amd/build/cohort_datasource.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/build/cohort_datasource.min.js.map -------------------------------------------------------------------------------- /local/o365/amd/build/group_datasource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/build/group_datasource.min.js -------------------------------------------------------------------------------- /local/o365/amd/build/group_datasource.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/build/group_datasource.min.js.map -------------------------------------------------------------------------------- /local/o365/amd/src/cohort_datasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/src/cohort_datasource.js -------------------------------------------------------------------------------- /local/o365/amd/src/group_datasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/amd/src/group_datasource.js -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/adminconsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/adminconsent.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/courseresetteams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/courseresetteams.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/coursesync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/coursesync.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/detectoidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/detectoidc.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/healthcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/healthcheck.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/moodlesetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/moodlesetup.js -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/moodlesetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/moodlesetup.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/serviceresource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/serviceresource.js -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/serviceresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/serviceresource.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/tabs.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/toollink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/toollink.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/usersynccreationrestriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/usersynccreationrestriction.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/usersyncoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/usersyncoptions.php -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/verifysetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/verifysetup.js -------------------------------------------------------------------------------- /local/o365/classes/adminsetting/verifysetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/adminsetting/verifysetup.php -------------------------------------------------------------------------------- /local/o365/classes/event/api_call_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/event/api_call_failed.php -------------------------------------------------------------------------------- /local/o365/classes/event/calendar_subscribed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/event/calendar_subscribed.php -------------------------------------------------------------------------------- /local/o365/classes/event/calendar_unsubscribed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/event/calendar_unsubscribed.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/form/element/calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/form/element/calendar.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/form/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/form/subscriptions.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/main.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/observers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/observers.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/task/importfromoutlook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/task/importfromoutlook.php -------------------------------------------------------------------------------- /local/o365/classes/feature/calsync/task/syncoldevents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/calsync/task/syncoldevents.php -------------------------------------------------------------------------------- /local/o365/classes/feature/cohortsync/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/cohortsync/main.php -------------------------------------------------------------------------------- /local/o365/classes/feature/courserequest/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/courserequest/main.php -------------------------------------------------------------------------------- /local/o365/classes/feature/coursesync/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/coursesync/main.php -------------------------------------------------------------------------------- /local/o365/classes/feature/coursesync/observers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/coursesync/observers.php -------------------------------------------------------------------------------- /local/o365/classes/feature/coursesync/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/coursesync/utils.php -------------------------------------------------------------------------------- /local/o365/classes/feature/sds/task/sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/sds/task/sync.php -------------------------------------------------------------------------------- /local/o365/classes/feature/sds/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/sds/utils.php -------------------------------------------------------------------------------- /local/o365/classes/feature/userconnections/filtering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/userconnections/filtering.php -------------------------------------------------------------------------------- /local/o365/classes/feature/userconnections/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/userconnections/table.php -------------------------------------------------------------------------------- /local/o365/classes/feature/usersync/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/feature/usersync/main.php -------------------------------------------------------------------------------- /local/o365/classes/form/cohort_autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/cohort_autocomplete.php -------------------------------------------------------------------------------- /local/o365/classes/form/cohortsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/cohortsync.php -------------------------------------------------------------------------------- /local/o365/classes/form/courserequestform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/courserequestform.php -------------------------------------------------------------------------------- /local/o365/classes/form/group_autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/group_autocomplete.php -------------------------------------------------------------------------------- /local/o365/classes/form/manualusermatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/manualusermatch.php -------------------------------------------------------------------------------- /local/o365/classes/form/teamsconnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/teamsconnection.php -------------------------------------------------------------------------------- /local/o365/classes/form/teamstabconfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/teamstabconfiguration.php -------------------------------------------------------------------------------- /local/o365/classes/form/usermatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/form/usermatch.php -------------------------------------------------------------------------------- /local/o365/classes/healthcheck/healthcheckinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/healthcheck/healthcheckinterface.php -------------------------------------------------------------------------------- /local/o365/classes/healthcheck/ratelimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/healthcheck/ratelimit.php -------------------------------------------------------------------------------- /local/o365/classes/httpclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/httpclient.php -------------------------------------------------------------------------------- /local/o365/classes/httpclientinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/httpclientinterface.php -------------------------------------------------------------------------------- /local/o365/classes/oauth2/apptoken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/oauth2/apptoken.php -------------------------------------------------------------------------------- /local/o365/classes/oauth2/clientdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/oauth2/clientdata.php -------------------------------------------------------------------------------- /local/o365/classes/oauth2/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/oauth2/token.php -------------------------------------------------------------------------------- /local/o365/classes/obj/o365user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/obj/o365user.php -------------------------------------------------------------------------------- /local/o365/classes/observers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/observers.php -------------------------------------------------------------------------------- /local/o365/classes/page/acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/page/acp.php -------------------------------------------------------------------------------- /local/o365/classes/page/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/page/ajax.php -------------------------------------------------------------------------------- /local/o365/classes/page/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/page/base.php -------------------------------------------------------------------------------- /local/o365/classes/page/ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/page/ucp.php -------------------------------------------------------------------------------- /local/o365/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/privacy/provider.php -------------------------------------------------------------------------------- /local/o365/classes/rest/o365api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/rest/o365api.php -------------------------------------------------------------------------------- /local/o365/classes/rest/unified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/rest/unified.php -------------------------------------------------------------------------------- /local/o365/classes/task/cohortsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/cohortsync.php -------------------------------------------------------------------------------- /local/o365/classes/task/coursemembershipsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/coursemembershipsync.php -------------------------------------------------------------------------------- /local/o365/classes/task/coursesync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/coursesync.php -------------------------------------------------------------------------------- /local/o365/classes/task/groupmembershipsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/groupmembershipsync.php -------------------------------------------------------------------------------- /local/o365/classes/task/notifysecretexpiry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/notifysecretexpiry.php -------------------------------------------------------------------------------- /local/o365/classes/task/processcourserequestapproval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/processcourserequestapproval.php -------------------------------------------------------------------------------- /local/o365/classes/task/processmatchqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/processmatchqueue.php -------------------------------------------------------------------------------- /local/o365/classes/task/updatecourserequeststatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/updatecourserequeststatus.php -------------------------------------------------------------------------------- /local/o365/classes/task/usersync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/task/usersync.php -------------------------------------------------------------------------------- /local/o365/classes/tests/mockhttpclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/tests/mockhttpclient.php -------------------------------------------------------------------------------- /local/o365/classes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/utils.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/cohortsync_search_cohorts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/cohortsync_search_cohorts.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/cohortsync_search_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/cohortsync_search_groups.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/create_onenoteassignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/create_onenoteassignment.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/delete_onenoteassignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/delete_onenoteassignment.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/exception/assignnotfound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/exception/assignnotfound.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/exception/couldnotsavegrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/exception/couldnotsavegrade.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/exception/invalidassignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/exception/invalidassignment.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/exception/modulenotfound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/exception/modulenotfound.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/exception/sectionnotfound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/exception/sectionnotfound.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/read_assignments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/read_assignments.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/read_courseusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/read_courseusers.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/read_onenoteassignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/read_onenoteassignment.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/read_teachercourses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/read_teachercourses.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/update_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/update_grade.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/update_onenoteassignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/update_onenoteassignment.php -------------------------------------------------------------------------------- /local/o365/classes/webservices/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/classes/webservices/utils.php -------------------------------------------------------------------------------- /local/o365/cohortsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/cohortsync.php -------------------------------------------------------------------------------- /local/o365/courserequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/courserequest.php -------------------------------------------------------------------------------- /local/o365/db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/access.php -------------------------------------------------------------------------------- /local/o365/db/caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/caches.php -------------------------------------------------------------------------------- /local/o365/db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/events.php -------------------------------------------------------------------------------- /local/o365/db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/install.php -------------------------------------------------------------------------------- /local/o365/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/install.xml -------------------------------------------------------------------------------- /local/o365/db/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/services.php -------------------------------------------------------------------------------- /local/o365/db/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/tasks.php -------------------------------------------------------------------------------- /local/o365/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/db/upgrade.php -------------------------------------------------------------------------------- /local/o365/export_manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/export_manifest.php -------------------------------------------------------------------------------- /local/o365/font/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/font/segoeui.ttf -------------------------------------------------------------------------------- /local/o365/font/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/font/segoeuib.ttf -------------------------------------------------------------------------------- /local/o365/font/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/font/segoeuil.ttf -------------------------------------------------------------------------------- /local/o365/font/segoeuisl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/font/segoeuisl.ttf -------------------------------------------------------------------------------- /local/o365/font/seguisb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/font/seguisb.ttf -------------------------------------------------------------------------------- /local/o365/lang/cs/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/cs/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/de/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/de/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/en/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/en/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/es/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/es/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/fi/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/fi/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/fr/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/fr/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/it/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/it/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/ja/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/ja/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/nl/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/nl/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/pl/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/pl/local_o365.php -------------------------------------------------------------------------------- /local/o365/lang/pt_br/local_o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lang/pt_br/local_o365.php -------------------------------------------------------------------------------- /local/o365/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/lib.php -------------------------------------------------------------------------------- /local/o365/pix/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/color.png -------------------------------------------------------------------------------- /local/o365/pix/moodle_app_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/moodle_app_id.png -------------------------------------------------------------------------------- /local/o365/pix/o365color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/o365color.png -------------------------------------------------------------------------------- /local/o365/pix/onenotecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/onenotecolor.png -------------------------------------------------------------------------------- /local/o365/pix/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/outline.png -------------------------------------------------------------------------------- /local/o365/pix/outlookcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/outlookcolor.png -------------------------------------------------------------------------------- /local/o365/pix/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/spinner.gif -------------------------------------------------------------------------------- /local/o365/pix/teams_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/pix/teams_app.png -------------------------------------------------------------------------------- /local/o365/scripts/Moodle-EntraID-PowerShell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/scripts/Moodle-EntraID-PowerShell.zip -------------------------------------------------------------------------------- /local/o365/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/scripts/README.md -------------------------------------------------------------------------------- /local/o365/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/settings.php -------------------------------------------------------------------------------- /local/o365/sso_end.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/sso_end.php -------------------------------------------------------------------------------- /local/o365/sso_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/sso_login.php -------------------------------------------------------------------------------- /local/o365/sso_start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/sso_start.php -------------------------------------------------------------------------------- /local/o365/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/styles.css -------------------------------------------------------------------------------- /local/o365/teams_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/teams_tab.php -------------------------------------------------------------------------------- /local/o365/teams_tab_configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/teams_tab_configuration.php -------------------------------------------------------------------------------- /local/o365/teams_tab_redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/teams_tab_redirect.php -------------------------------------------------------------------------------- /local/o365/tests/coursesyncutils_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/coursesyncutils_test.php -------------------------------------------------------------------------------- /local/o365/tests/observers_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/observers_test.php -------------------------------------------------------------------------------- /local/o365/tests/privacy_provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/privacy_provider_test.php -------------------------------------------------------------------------------- /local/o365/tests/token_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/token_test.php -------------------------------------------------------------------------------- /local/o365/tests/usersync_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/usersync_test.php -------------------------------------------------------------------------------- /local/o365/tests/webservices_onenoteassignment_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/webservices_onenoteassignment_test.php -------------------------------------------------------------------------------- /local/o365/tests/webservices_utils_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/tests/webservices_utils_test.php -------------------------------------------------------------------------------- /local/o365/ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/ucp.php -------------------------------------------------------------------------------- /local/o365/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/o365/version.php -------------------------------------------------------------------------------- /local/office365/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /local/office365/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/.github/workflows/ci.yml -------------------------------------------------------------------------------- /local/office365/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/.gitlab-ci.yml -------------------------------------------------------------------------------- /local/office365/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/LICENSE -------------------------------------------------------------------------------- /local/office365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/README.md -------------------------------------------------------------------------------- /local/office365/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/SECURITY.md -------------------------------------------------------------------------------- /local/office365/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/classes/privacy/provider.php -------------------------------------------------------------------------------- /local/office365/lang/cs/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/cs/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/de/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/de/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/en/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/en/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/es/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/es/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/fi/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/fi/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/fr/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/fr/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/it/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/it/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/ja/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/ja/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/nl/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/nl/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/pl/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/pl/local_office365.php -------------------------------------------------------------------------------- /local/office365/lang/pt_br/local_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/lang/pt_br/local_office365.php -------------------------------------------------------------------------------- /local/office365/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/office365/version.php -------------------------------------------------------------------------------- /local/onenote/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /local/onenote/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/.github/workflows/ci.yml -------------------------------------------------------------------------------- /local/onenote/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/.gitlab-ci.yml -------------------------------------------------------------------------------- /local/onenote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/LICENSE -------------------------------------------------------------------------------- /local/onenote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/README.md -------------------------------------------------------------------------------- /local/onenote/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/SECURITY.md -------------------------------------------------------------------------------- /local/onenote/classes/api/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/classes/api/base.php -------------------------------------------------------------------------------- /local/onenote/classes/api/o365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/classes/api/o365.php -------------------------------------------------------------------------------- /local/onenote/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/classes/privacy/provider.php -------------------------------------------------------------------------------- /local/onenote/classes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/classes/utils.php -------------------------------------------------------------------------------- /local/onenote/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/db/install.xml -------------------------------------------------------------------------------- /local/onenote/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/db/upgrade.php -------------------------------------------------------------------------------- /local/onenote/lang/cs/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/cs/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/de/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/de/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/en/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/en/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/es/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/es/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/fi/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/fi/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/fr/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/fr/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/it/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/it/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/ja/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/ja/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/nl/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/nl/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/pl/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/pl/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/lang/pt_br/local_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/lang/pt_br/local_onenote.php -------------------------------------------------------------------------------- /local/onenote/onenote_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/onenote_actions.php -------------------------------------------------------------------------------- /local/onenote/pix/onenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/pix/onenote.png -------------------------------------------------------------------------------- /local/onenote/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/styles.css -------------------------------------------------------------------------------- /local/onenote/tests/generator/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/tests/generator/lib.php -------------------------------------------------------------------------------- /local/onenote/tests/onenoteapi_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/tests/onenoteapi_test.php -------------------------------------------------------------------------------- /local/onenote/tests/privacy_provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/tests/privacy_provider_test.php -------------------------------------------------------------------------------- /local/onenote/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/local/onenote/version.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/.github/workflows/ci.yml -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/.gitlab-ci.yml -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/LICENSE -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/README.md -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/SECURITY.md -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/amd/build/onenotedelete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/amd/build/onenotedelete.min.js -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/amd/build/onenotedelete.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/amd/build/onenotedelete.min.js.map -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/amd/src/onenotedelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/amd/src/onenotedelete.js -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/backup/moodle2/backup_assignfeedback_onenote_subplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/backup/moodle2/backup_assignfeedback_onenote_subplugin.class.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/backup/moodle2/restore_assignfeedback_onenote_subplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/backup/moodle2/restore_assignfeedback_onenote_subplugin.class.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/classes/privacy/provider.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/db/install.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/db/install.xml -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/db/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/db/services.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/db/upgrade.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/externallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/externallib.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/cs/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/cs/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/de/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/de/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/en/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/en/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/es/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/es/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/fi/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/fi/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/fr/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/fr/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/it/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/it/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/ja/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/ja/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/nl/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/nl/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/pl/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/pl/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lang/pt_br/assignfeedback_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lang/pt_br/assignfeedback_onenote.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/lib.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/locallib.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/settings.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/tests/privacy/provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/tests/privacy/provider_test.php -------------------------------------------------------------------------------- /mod/assign/feedback/onenote/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/feedback/onenote/version.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /mod/assign/submission/onenote/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/.github/workflows/ci.yml -------------------------------------------------------------------------------- /mod/assign/submission/onenote/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/.gitlab-ci.yml -------------------------------------------------------------------------------- /mod/assign/submission/onenote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/LICENSE -------------------------------------------------------------------------------- /mod/assign/submission/onenote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/README.md -------------------------------------------------------------------------------- /mod/assign/submission/onenote/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/SECURITY.md -------------------------------------------------------------------------------- /mod/assign/submission/onenote/backup/moodle2/backup_assignsubmission_onenote_subplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/backup/moodle2/backup_assignsubmission_onenote_subplugin.class.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/backup/moodle2/restore_assignsubmission_onenote_subplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/backup/moodle2/restore_assignsubmission_onenote_subplugin.class.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/classes/event/assessable_uploaded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/classes/event/assessable_uploaded.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/classes/event/submission_created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/classes/event/submission_created.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/classes/event/submission_updated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/classes/event/submission_updated.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/classes/privacy/provider.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/db/install.xml -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/cs/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/cs/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/de/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/de/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/en/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/en/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/es/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/es/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/fi/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/fi/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/fr/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/fr/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/it/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/it/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/ja/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/ja/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/nl/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/nl/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/pl/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/pl/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lang/pt_br/assignsubmission_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lang/pt_br/assignsubmission_onenote.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/lib.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/locallib.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/settings.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/tests/privacy/provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/tests/privacy/provider_test.php -------------------------------------------------------------------------------- /mod/assign/submission/onenote/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/mod/assign/submission/onenote/version.php -------------------------------------------------------------------------------- /repository/office365/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /repository/office365/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/.github/workflows/ci.yml -------------------------------------------------------------------------------- /repository/office365/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/.gitlab-ci.yml -------------------------------------------------------------------------------- /repository/office365/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/LICENSE -------------------------------------------------------------------------------- /repository/office365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/README.md -------------------------------------------------------------------------------- /repository/office365/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/SECURITY.md -------------------------------------------------------------------------------- /repository/office365/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/classes/privacy/provider.php -------------------------------------------------------------------------------- /repository/office365/db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/db/access.php -------------------------------------------------------------------------------- /repository/office365/db/caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/db/caches.php -------------------------------------------------------------------------------- /repository/office365/lang/cs/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/cs/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/de/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/de/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/en/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/en/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/es/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/es/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/fi/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/fi/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/fr/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/fr/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/it/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/it/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/ja/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/ja/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/nl/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/nl/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/pl/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/pl/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lang/pt_br/repository_office365.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lang/pt_br/repository_office365.php -------------------------------------------------------------------------------- /repository/office365/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/lib.php -------------------------------------------------------------------------------- /repository/office365/pix/coursegroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/coursegroups.png -------------------------------------------------------------------------------- /repository/office365/pix/delve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/delve.png -------------------------------------------------------------------------------- /repository/office365/pix/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/icon.png -------------------------------------------------------------------------------- /repository/office365/pix/office365video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/office365video.png -------------------------------------------------------------------------------- /repository/office365/pix/onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/onedrive.png -------------------------------------------------------------------------------- /repository/office365/pix/sharepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/sharepoint.png -------------------------------------------------------------------------------- /repository/office365/pix/trendingaround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/pix/trendingaround.png -------------------------------------------------------------------------------- /repository/office365/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/repository/office365/version.php -------------------------------------------------------------------------------- /theme/boost_o365teams/.github/PULL_REQUEST_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/.github/PULL_REQUEST_TEMPLATE.txt -------------------------------------------------------------------------------- /theme/boost_o365teams/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/.github/workflows/ci.yml -------------------------------------------------------------------------------- /theme/boost_o365teams/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/.gitlab-ci.yml -------------------------------------------------------------------------------- /theme/boost_o365teams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/README.md -------------------------------------------------------------------------------- /theme/boost_o365teams/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/SECURITY.md -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/build/iframeChecker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/build/iframeChecker.min.js -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/build/iframeChecker.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/build/iframeChecker.min.js.map -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/build/teamsThemeChecker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/build/teamsThemeChecker.min.js -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/build/teamsThemeChecker.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/build/teamsThemeChecker.min.js.map -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/src/iframeChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/src/iframeChecker.js -------------------------------------------------------------------------------- /theme/boost_o365teams/amd/src/teamsThemeChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/amd/src/teamsThemeChecker.js -------------------------------------------------------------------------------- /theme/boost_o365teams/classes/output/core_renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/classes/output/core_renderer.php -------------------------------------------------------------------------------- /theme/boost_o365teams/classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/classes/privacy/provider.php -------------------------------------------------------------------------------- /theme/boost_o365teams/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/config.php -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Light.eot -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Light.svg -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Light.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Light.woff -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Light.woff2 -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Regular.eot -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Regular.svg -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Regular.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Regular.woff -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/TeamsAssets-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/TeamsAssets-Regular.woff2 -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/segoeui.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/segoeuib.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/segoeuil.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/segoeuisl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/segoeuisl.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/fonts/seguisb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/fonts/seguisb.ttf -------------------------------------------------------------------------------- /theme/boost_o365teams/lang/en/theme_boost_o365teams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/lang/en/theme_boost_o365teams.php -------------------------------------------------------------------------------- /theme/boost_o365teams/layout/columns2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/layout/columns2.php -------------------------------------------------------------------------------- /theme/boost_o365teams/layout/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/layout/login.php -------------------------------------------------------------------------------- /theme/boost_o365teams/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/lib.php -------------------------------------------------------------------------------- /theme/boost_o365teams/pix/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix/favicon.ico -------------------------------------------------------------------------------- /theme/boost_o365teams/pix/moodlelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix/moodlelogo.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix/screenshot.jpg -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-128.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-24.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-256.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-32.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-48.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-64.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-72.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-80.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document-96.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/document.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-128.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-24.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-256.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-32.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-48.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-64.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-72.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-80.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf-96.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/pdf.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-128.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-24.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-256.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-32.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-48.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-64.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-72.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-80.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint-96.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/powerpoint.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-128.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-24.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-256.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-32.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-48.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-64.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-72.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-80.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet-96.png -------------------------------------------------------------------------------- /theme/boost_o365teams/pix_core/f/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/pix_core/f/spreadsheet.png -------------------------------------------------------------------------------- /theme/boost_o365teams/renderers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/renderers.php -------------------------------------------------------------------------------- /theme/boost_o365teams/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/settings.php -------------------------------------------------------------------------------- /theme/boost_o365teams/style/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/style/custom.css -------------------------------------------------------------------------------- /theme/boost_o365teams/templates/columns2.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/templates/columns2.mustache -------------------------------------------------------------------------------- /theme/boost_o365teams/templates/head.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/templates/head.mustache -------------------------------------------------------------------------------- /theme/boost_o365teams/templates/login.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/templates/login.mustache -------------------------------------------------------------------------------- /theme/boost_o365teams/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/o365-moodle/HEAD/theme/boost_o365teams/version.php --------------------------------------------------------------------------------