├── .dockerignore ├── .gitignore ├── .nvmrc ├── .phan └── config.php ├── COPYING ├── CUSTOMISATIONS-example.md ├── Makefile ├── README.md ├── append_composer.php ├── composer.json ├── composer.lock ├── composer_patches ├── htmlpurifier.patch ├── htmlpurifier.preservecssfilter.patch ├── htmlpurifier.schema.patch └── htmlpurifier.whitelists.patch ├── dev ├── .php-cs-fixer.dist.php ├── elasticsearch7 │ ├── README.md │ ├── TODO.md │ ├── TODO_re-indexing_re-saving_bugs.md │ ├── create-certs.yml │ ├── docker-compose.yml │ ├── elastic-docker-tls.yml │ ├── example.env │ └── instances.yml ├── happy-banner.txt ├── mahara_custom_phpcs.xml └── sad-banner.txt ├── docker ├── .env-dist ├── Dockerfile.mahara-base-bionic ├── Dockerfile.mahara-base-focal ├── Dockerfile.mahara-base-impish ├── Dockerfile.mahara-base-jammy ├── Dockerfile.mahara-builder ├── Dockerfile.mahara-web-bionic ├── Dockerfile.mahara-web-focal ├── Dockerfile.mahara-web-impish ├── Dockerfile.mahara-web-jammy ├── README.md ├── chromium.json ├── docker-compose.dev.yaml ├── docker-compose.prod.yaml ├── docker-compose.shared.yaml ├── docker-compose.yaml ├── make.sh ├── proxy │ └── etc │ │ └── nginx │ │ └── nginx.conf ├── test-db.sh ├── test-mahara.sh └── web │ └── etc │ ├── apache2 │ └── sites-available │ │ └── mahara-http.conf │ └── php │ └── 7.4 │ ├── apache2 │ └── conf.d │ │ └── 20-xdebug.ini │ └── cli │ └── conf.d │ └── 20-xdebug.ini ├── external ├── composer.json ├── composer.lock ├── composer.patches.json └── escaper.patch ├── grumphp.yml ├── gulpfile.js ├── htdocs ├── about.php ├── account │ ├── activity │ │ ├── index.php │ │ └── preferences │ │ │ └── index.php │ ├── apps.php │ ├── cancelrequest.php │ ├── delete.php │ ├── index.php │ ├── institutions.php │ ├── migrateinstitution.php │ ├── migrateinstitutionconfirm.php │ ├── resendnotification.php │ └── userprivacy.php ├── admin │ ├── cli │ │ ├── clear_caches.php │ │ ├── close_site.php │ │ ├── delete_inactive_groups.php │ │ ├── delete_inactive_users.php │ │ ├── es7_fast_index.php │ │ ├── fast_index.php │ │ ├── install.php │ │ ├── populate_outcome_tables.php │ │ ├── portfolio_bulkexport.php │ │ ├── reset_password.php │ │ ├── sync_langpacks.php │ │ └── upgrade.php │ ├── extensions │ │ ├── cleanurls.php │ │ ├── embeddedurls.php │ │ ├── filter.php │ │ ├── iframesites.php │ │ ├── pluginconfig.php │ │ ├── plugininfo.json.php │ │ ├── plugins.php │ │ └── plugintypeconfig.php │ ├── groups │ │ ├── archives.json.php │ │ ├── archives.php │ │ ├── archivescsvdownload.php │ │ ├── delete.php │ │ ├── deletegroupcategory.json.php │ │ ├── getgroupcategories.json.php │ │ ├── groupcategories.php │ │ ├── groups.json.php │ │ ├── groups.php │ │ ├── manage.php │ │ ├── settings.php │ │ ├── updategroup.json.php │ │ ├── uploadcsv.php │ │ └── uploadmemberscsv.php │ ├── index.php │ ├── registersite.php │ ├── site │ │ ├── cookieconsent.php │ │ ├── deletemenuitem.json.php │ │ ├── editchangecontent.json.php │ │ ├── font │ │ │ ├── add.php │ │ │ ├── css.php │ │ │ ├── delete.php │ │ │ ├── edit.php │ │ │ ├── install.php │ │ │ └── specimen.php │ │ ├── fonts.json.php │ │ ├── fonts.php │ │ ├── getadminfiles.json.php │ │ ├── getmenuitems.json.php │ │ ├── homepageredirect.json.php │ │ ├── langpacks.php │ │ ├── license-edit.php │ │ ├── licenses.php │ │ ├── menu.php │ │ ├── networking.php │ │ ├── options.php │ │ ├── pages.php │ │ ├── privacy.php │ │ ├── shareviews.php │ │ ├── skins.php │ │ ├── updatemenu.json.php │ │ └── views.php │ ├── thumb.php │ ├── upgrade.json.php │ ├── upgrade.php │ └── users │ │ ├── actiondeletion.php │ │ ├── actionregistration.php │ │ ├── add.php │ │ ├── addauthority.php │ │ ├── admins.php │ │ ├── bulk.php │ │ ├── bulkexport.php │ │ ├── bulkimport.php │ │ ├── changeuser.php │ │ ├── edit.php │ │ ├── exportqueue.json.php │ │ ├── exportqueue.php │ │ ├── institutionadmins.php │ │ ├── institutionpages.php │ │ ├── institutionprivacy.php │ │ ├── institutions.json.php │ │ ├── institutions.php │ │ ├── institutionstaff.php │ │ ├── institutionsupportadmins.php │ │ ├── institutiontags.php │ │ ├── institutionusers.php │ │ ├── notifications.php │ │ ├── pendingdeletions.php │ │ ├── pendingregistrations.php │ │ ├── progressbar.php │ │ ├── quota.json.php │ │ ├── search.json.php │ │ ├── search.php │ │ ├── staff.php │ │ ├── statistics.json.php │ │ ├── statistics.php │ │ ├── statisticsuseragreements.php │ │ ├── statsconfig.json.php │ │ ├── suspended.json.php │ │ ├── suspended.php │ │ ├── uploadcsv.php │ │ └── userinstitutionsearch.json.php ├── api │ ├── index.html │ ├── mobile │ │ ├── lib.php │ │ ├── sync.php │ │ └── upload.php │ └── xmlrpc │ │ ├── client.php │ │ ├── dispatcher.php │ │ ├── index.html │ │ ├── lib.php │ │ └── server.php ├── artefact │ ├── annotation │ │ ├── annotations.json.php │ │ ├── blocktype │ │ │ └── annotation │ │ │ │ ├── js │ │ │ │ └── annotation.js │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ ├── blocktype.annotation.php │ │ │ │ │ └── help │ │ │ │ │ └── forms │ │ │ │ │ └── instconf.annotationreadonlymsg.html │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── db │ │ │ └── install.xml │ │ ├── edit.php │ │ ├── export │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.annotation.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ └── activityprefs.activity_annotationfeedback_artefact_annotation.html │ │ ├── lib.php │ │ └── version.php │ ├── artefact.php │ ├── blog │ │ ├── atom.php │ │ ├── blank.html │ │ ├── blocktype │ │ │ ├── blog │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.blog.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── blogpost │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.blogpost.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── recentposts │ │ │ │ ├── js │ │ │ │ │ └── recentposts.js │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.recentposts.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ └── taggedposts │ │ │ │ ├── db │ │ │ │ ├── install.xml │ │ │ │ └── upgrade.php │ │ │ │ ├── js │ │ │ │ └── taggedposts.js │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ ├── blocktype.taggedposts.php │ │ │ │ │ └── help │ │ │ │ │ └── forms │ │ │ │ │ └── instconf.tagselect.html │ │ │ │ ├── lib.php │ │ │ │ ├── taggedposts.json.php │ │ │ │ └── version.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── export │ │ │ ├── html │ │ │ │ └── lib.php │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── index.json.php │ │ ├── index.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.blog.php │ │ │ │ └── help │ │ │ │ ├── forms │ │ │ │ └── editpost.draft.html │ │ │ │ ├── pages │ │ │ │ ├── index.html │ │ │ │ └── view.html │ │ │ │ └── sections │ │ │ │ └── browsemyfiles.html │ │ ├── lib.php │ │ ├── new │ │ │ └── index.php │ │ ├── post.php │ │ ├── posts.json.php │ │ ├── settings │ │ │ └── index.php │ │ ├── version.php │ │ └── view │ │ │ ├── index.json.php │ │ │ └── index.php │ ├── checkpoint │ │ ├── blocktype │ │ │ └── checkpoint │ │ │ │ ├── js │ │ │ │ └── checkpoint.js │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.checkpoint.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── checkpoint.json.php │ │ ├── checkpointinfo.json.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── get_achievement_info.json.php │ │ ├── get_achievement_result.json.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.checkpoint.php │ │ │ │ └── help │ │ │ │ └── pages │ │ │ │ ├── achievement_message.html │ │ │ │ └── achievement_message_done.html │ │ ├── lib.php │ │ ├── updatecheckpoint.json.php │ │ └── version.php │ ├── comment │ │ ├── blocktype │ │ │ └── comment │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.comment.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── comments.json.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── edit.php │ │ ├── export │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.comment.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ ├── activityprefs.activity_feedback_artefact_comment.html │ │ │ │ └── pluginconfig.commentratings.html │ │ ├── lib.php │ │ └── version.php │ ├── extratables.xml │ ├── file │ │ ├── blank.html │ │ ├── blocktype │ │ │ ├── filedownload │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.filedownload.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── folder │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.folder.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── gallery │ │ │ │ ├── js │ │ │ │ │ └── configform.js │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ ├── blocktype.gallery.php │ │ │ │ │ │ └── help │ │ │ │ │ │ └── forms │ │ │ │ │ │ └── instconf.external.html │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── html │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.html.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── image │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.image.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── internalmedia │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.internalmedia.php │ │ │ │ ├── lib.php │ │ │ │ ├── version.php │ │ │ │ └── videojs │ │ │ │ │ ├── README.Mahara │ │ │ │ │ ├── font │ │ │ │ │ ├── VideoJS.svg │ │ │ │ │ ├── VideoJS.ttf │ │ │ │ │ └── VideoJS.woff │ │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── ba.js │ │ │ │ │ ├── ba.json │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bn.json │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.js │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.js │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.js │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.js │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es.js │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.js │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gd.json │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.js │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hr.json │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.js │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── lv.json │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── oc.json │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt-BR.json │ │ │ │ │ ├── pt-PT.js │ │ │ │ │ ├── pt-PT.json │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sk.json │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── te.js │ │ │ │ │ ├── te.json │ │ │ │ │ ├── th.js │ │ │ │ │ ├── th.json │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── zh-CN.json │ │ │ │ │ ├── zh-Hans.js │ │ │ │ │ ├── zh-Hans.json │ │ │ │ │ ├── zh-Hant.js │ │ │ │ │ ├── zh-Hant.json │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ └── zh-TW.json │ │ │ │ │ ├── video-js.swf │ │ │ │ │ ├── video.js │ │ │ │ │ └── video.min.js │ │ │ └── pdf │ │ │ │ ├── js │ │ │ │ ├── pdfjs │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.Mahara │ │ │ │ │ ├── build │ │ │ │ │ │ ├── pdf.js │ │ │ │ │ │ ├── pdf.js.map │ │ │ │ │ │ ├── pdf.sandbox.js │ │ │ │ │ │ ├── pdf.sandbox.js.map │ │ │ │ │ │ ├── pdf.worker.js │ │ │ │ │ │ └── pdf.worker.js.map │ │ │ │ │ ├── image_decoders │ │ │ │ │ │ ├── pdf.image_decoders.js │ │ │ │ │ │ └── pdf.image_decoders.js.map │ │ │ │ │ └── web │ │ │ │ │ │ ├── cmaps │ │ │ │ │ │ ├── 78-EUC-H.bcmap │ │ │ │ │ │ ├── 78-EUC-V.bcmap │ │ │ │ │ │ ├── 78-H.bcmap │ │ │ │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ │ │ │ ├── 78-V.bcmap │ │ │ │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ │ │ │ ├── Add-H.bcmap │ │ │ │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ │ │ │ ├── Add-V.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ │ │ │ ├── B5-H.bcmap │ │ │ │ │ │ ├── B5-V.bcmap │ │ │ │ │ │ ├── B5pc-H.bcmap │ │ │ │ │ │ ├── B5pc-V.bcmap │ │ │ │ │ │ ├── CNS-EUC-H.bcmap │ │ │ │ │ │ ├── CNS-EUC-V.bcmap │ │ │ │ │ │ ├── CNS1-H.bcmap │ │ │ │ │ │ ├── CNS1-V.bcmap │ │ │ │ │ │ ├── CNS2-H.bcmap │ │ │ │ │ │ ├── CNS2-V.bcmap │ │ │ │ │ │ ├── ETHK-B5-H.bcmap │ │ │ │ │ │ ├── ETHK-B5-V.bcmap │ │ │ │ │ │ ├── ETen-B5-H.bcmap │ │ │ │ │ │ ├── ETen-B5-V.bcmap │ │ │ │ │ │ ├── ETenms-B5-H.bcmap │ │ │ │ │ │ ├── ETenms-B5-V.bcmap │ │ │ │ │ │ ├── EUC-H.bcmap │ │ │ │ │ │ ├── EUC-V.bcmap │ │ │ │ │ │ ├── Ext-H.bcmap │ │ │ │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ │ │ │ ├── Ext-V.bcmap │ │ │ │ │ │ ├── GB-EUC-H.bcmap │ │ │ │ │ │ ├── GB-EUC-V.bcmap │ │ │ │ │ │ ├── GB-H.bcmap │ │ │ │ │ │ ├── GB-V.bcmap │ │ │ │ │ │ ├── GBK-EUC-H.bcmap │ │ │ │ │ │ ├── GBK-EUC-V.bcmap │ │ │ │ │ │ ├── GBK2K-H.bcmap │ │ │ │ │ │ ├── GBK2K-V.bcmap │ │ │ │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ │ │ │ ├── GBT-EUC-H.bcmap │ │ │ │ │ │ ├── GBT-EUC-V.bcmap │ │ │ │ │ │ ├── GBT-H.bcmap │ │ │ │ │ │ ├── GBT-V.bcmap │ │ │ │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ │ │ │ ├── H.bcmap │ │ │ │ │ │ ├── HKdla-B5-H.bcmap │ │ │ │ │ │ ├── HKdla-B5-V.bcmap │ │ │ │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ │ │ │ ├── HKm314-B5-H.bcmap │ │ │ │ │ │ ├── HKm314-B5-V.bcmap │ │ │ │ │ │ ├── HKm471-B5-H.bcmap │ │ │ │ │ │ ├── HKm471-B5-V.bcmap │ │ │ │ │ │ ├── HKscs-B5-H.bcmap │ │ │ │ │ │ ├── HKscs-B5-V.bcmap │ │ │ │ │ │ ├── Hankaku.bcmap │ │ │ │ │ │ ├── Hiragana.bcmap │ │ │ │ │ │ ├── KSC-EUC-H.bcmap │ │ │ │ │ │ ├── KSC-EUC-V.bcmap │ │ │ │ │ │ ├── KSC-H.bcmap │ │ │ │ │ │ ├── KSC-Johab-H.bcmap │ │ │ │ │ │ ├── KSC-Johab-V.bcmap │ │ │ │ │ │ ├── KSC-V.bcmap │ │ │ │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ │ │ │ ├── Katakana.bcmap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NWP-H.bcmap │ │ │ │ │ │ ├── NWP-V.bcmap │ │ │ │ │ │ ├── RKSJ-H.bcmap │ │ │ │ │ │ ├── RKSJ-V.bcmap │ │ │ │ │ │ ├── Roman.bcmap │ │ │ │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ │ │ │ ├── V.bcmap │ │ │ │ │ │ └── WP-Symbol.bcmap │ │ │ │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ │ │ │ ├── debugger.css │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── annotation-check.svg │ │ │ │ │ │ ├── annotation-comment.svg │ │ │ │ │ │ ├── annotation-help.svg │ │ │ │ │ │ ├── annotation-insert.svg │ │ │ │ │ │ ├── annotation-key.svg │ │ │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ │ │ ├── annotation-noicon.svg │ │ │ │ │ │ ├── annotation-note.svg │ │ │ │ │ │ ├── annotation-paperclip.svg │ │ │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ │ │ ├── annotation-pushpin.svg │ │ │ │ │ │ ├── cursor-editorFreeText.svg │ │ │ │ │ │ ├── cursor-editorInk.svg │ │ │ │ │ │ ├── findbarButton-next.svg │ │ │ │ │ │ ├── findbarButton-previous.svg │ │ │ │ │ │ ├── loading-dark.svg │ │ │ │ │ │ ├── loading-icon.gif │ │ │ │ │ │ ├── loading.svg │ │ │ │ │ │ ├── secondaryToolbarButton-documentProperties.svg │ │ │ │ │ │ ├── secondaryToolbarButton-firstPage.svg │ │ │ │ │ │ ├── secondaryToolbarButton-handTool.svg │ │ │ │ │ │ ├── secondaryToolbarButton-lastPage.svg │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCcw.svg │ │ │ │ │ │ ├── secondaryToolbarButton-rotateCw.svg │ │ │ │ │ │ ├── secondaryToolbarButton-scrollHorizontal.svg │ │ │ │ │ │ ├── secondaryToolbarButton-scrollPage.svg │ │ │ │ │ │ ├── secondaryToolbarButton-scrollVertical.svg │ │ │ │ │ │ ├── secondaryToolbarButton-scrollWrapped.svg │ │ │ │ │ │ ├── secondaryToolbarButton-selectTool.svg │ │ │ │ │ │ ├── secondaryToolbarButton-spreadEven.svg │ │ │ │ │ │ ├── secondaryToolbarButton-spreadNone.svg │ │ │ │ │ │ ├── secondaryToolbarButton-spreadOdd.svg │ │ │ │ │ │ ├── toolbarButton-bookmark.svg │ │ │ │ │ │ ├── toolbarButton-currentOutlineItem.svg │ │ │ │ │ │ ├── toolbarButton-download.svg │ │ │ │ │ │ ├── toolbarButton-editorFreeText.svg │ │ │ │ │ │ ├── toolbarButton-editorInk.svg │ │ │ │ │ │ ├── toolbarButton-menuArrow.svg │ │ │ │ │ │ ├── toolbarButton-openFile.svg │ │ │ │ │ │ ├── toolbarButton-pageDown.svg │ │ │ │ │ │ ├── toolbarButton-pageUp.svg │ │ │ │ │ │ ├── toolbarButton-presentationMode.svg │ │ │ │ │ │ ├── toolbarButton-print.svg │ │ │ │ │ │ ├── toolbarButton-search.svg │ │ │ │ │ │ ├── toolbarButton-secondaryToolbarToggle.svg │ │ │ │ │ │ ├── toolbarButton-sidebarToggle.svg │ │ │ │ │ │ ├── toolbarButton-viewAttachments.svg │ │ │ │ │ │ ├── toolbarButton-viewLayers.svg │ │ │ │ │ │ ├── toolbarButton-viewOutline.svg │ │ │ │ │ │ ├── toolbarButton-viewThumbnail.svg │ │ │ │ │ │ ├── toolbarButton-zoomIn.svg │ │ │ │ │ │ ├── toolbarButton-zoomOut.svg │ │ │ │ │ │ ├── treeitem-collapsed.svg │ │ │ │ │ │ └── treeitem-expanded.svg │ │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── ach │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── an │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── bo │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── brx │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── cak │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ckb │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── en-CA │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── en-GB │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── es-AR │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── es-CL │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── es-ES │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── es-MX │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── fur │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── fy-NL │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ga-IE │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── gn │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── gu-IN │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hi-IN │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hy-AM │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── hye │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── lij │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── lo │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── locale.properties │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ltg │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── meh │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ms │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── nb-NO │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ne-NP │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── nn-NO │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── oc │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── pa-IN │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── rm │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sat │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sc │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── scn │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sco │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── si │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── skr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── son │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── sv-SE │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── szl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── tg │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── tl │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── trs │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── wo │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── xh │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── zh-CN │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ └── zh-TW │ │ │ │ │ │ │ └── viewer.properties │ │ │ │ │ │ ├── standard_fonts │ │ │ │ │ │ ├── FoxitDingbats.pfb │ │ │ │ │ │ ├── FoxitFixed.pfb │ │ │ │ │ │ ├── FoxitFixedBold.pfb │ │ │ │ │ │ ├── FoxitFixedBoldItalic.pfb │ │ │ │ │ │ ├── FoxitFixedItalic.pfb │ │ │ │ │ │ ├── FoxitSans.pfb │ │ │ │ │ │ ├── FoxitSansBold.pfb │ │ │ │ │ │ ├── FoxitSansBoldItalic.pfb │ │ │ │ │ │ ├── FoxitSansItalic.pfb │ │ │ │ │ │ ├── FoxitSerif.pfb │ │ │ │ │ │ ├── FoxitSerifBold.pfb │ │ │ │ │ │ ├── FoxitSerifBoldItalic.pfb │ │ │ │ │ │ ├── FoxitSerifItalic.pfb │ │ │ │ │ │ ├── FoxitSymbol.pfb │ │ │ │ │ │ ├── LICENSE_FOXIT │ │ │ │ │ │ ├── LICENSE_LIBERATION │ │ │ │ │ │ ├── LiberationSans-Bold.ttf │ │ │ │ │ │ ├── LiberationSans-BoldItalic.ttf │ │ │ │ │ │ ├── LiberationSans-Italic.ttf │ │ │ │ │ │ └── LiberationSans-Regular.ttf │ │ │ │ │ │ ├── viewer.css │ │ │ │ │ │ ├── viewer.html │ │ │ │ │ │ ├── viewer.js │ │ │ │ │ │ └── viewer.js.map │ │ │ │ └── pdfjs_customisations │ │ │ │ │ ├── pdfjs_absolute_paths.patch │ │ │ │ │ └── pdfjs_hide_upload_buttons.patch │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.pdf.php │ │ │ │ ├── lib.php │ │ │ │ ├── version.php │ │ │ │ └── viewer.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── download.php │ │ ├── downloadfolder.php │ │ ├── export │ │ │ ├── html │ │ │ │ └── lib.php │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── externalfilesystem.php │ │ ├── extract-progress-percent.php │ │ ├── extract-progress.php │ │ ├── extract.php │ │ ├── filetypes.xml │ │ ├── groupfiles.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── index.php │ │ ├── institutionfiles.php │ │ ├── js │ │ │ ├── filebrowser.js │ │ │ └── filedropzone.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.file.php │ │ │ │ └── help │ │ │ │ ├── forms │ │ │ │ ├── files_filebrowser.resizeonuploaduseroption.html │ │ │ │ ├── pluginconfig.profileiconheight.html │ │ │ │ └── pluginconfig.resizeonuploadmaxheight.html │ │ │ │ ├── pages │ │ │ │ ├── groupfiles.html │ │ │ │ ├── index.html │ │ │ │ ├── profileicons.html │ │ │ │ └── sitefiles.html │ │ │ │ └── sections │ │ │ │ ├── altiscaption.html │ │ │ │ ├── alttext.html │ │ │ │ ├── groupquota_message.html │ │ │ │ ├── isdecorative.html │ │ │ │ ├── notice.html │ │ │ │ ├── quota_message.html │ │ │ │ └── tags.html │ │ ├── lib.php │ │ ├── profileicons.json.php │ │ ├── profileicons.php │ │ ├── sitefiles.php │ │ └── version.php │ ├── index.html │ ├── internal │ │ ├── blocktype │ │ │ ├── profileinfo │ │ │ │ ├── js │ │ │ │ │ └── configform.js │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.profileinfo.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ ├── socialprofile │ │ │ │ ├── lang │ │ │ │ │ └── en.utf8 │ │ │ │ │ │ └── blocktype.socialprofile.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ │ └── textbox │ │ │ │ ├── db │ │ │ │ └── upgrade.php │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ ├── blocktype.textbox.php │ │ │ │ │ └── help │ │ │ │ │ └── forms │ │ │ │ │ ├── instconf.otherblocksmsg.html │ │ │ │ │ └── instconf.readonlymsg.html │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── editnote.php │ │ ├── export │ │ │ ├── html │ │ │ │ └── lib.php │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── index.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.internal.php │ │ │ │ └── help │ │ │ │ ├── forms │ │ │ │ ├── pluginconfig.adminusersearch.html │ │ │ │ ├── pluginconfig.allowcomments.html │ │ │ │ ├── pluginconfig.mandatory.html │ │ │ │ ├── pluginconfig.searchable.html │ │ │ │ ├── profileform.email.html │ │ │ │ ├── profileform.introduction.html │ │ │ │ ├── profileform.officialwebsite.html │ │ │ │ └── profileform.preferredname.html │ │ │ │ ├── pages │ │ │ │ ├── index.html │ │ │ │ └── notes.html │ │ │ │ └── sections │ │ │ │ └── browsemyfiles.html │ │ ├── lib.php │ │ ├── notes.json.php │ │ ├── notes.php │ │ ├── socialprofile.php │ │ ├── validate.php │ │ └── version.php │ ├── lib.php │ ├── peerassessment │ │ ├── assessmentinfo.json.php │ │ ├── blocktype │ │ │ └── peerassessment │ │ │ │ ├── js │ │ │ │ └── peerassessment.js │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.peerassessment.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── completion.json.php │ │ ├── db │ │ │ └── install.xml │ │ ├── export │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.peerassessment.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ └── activityprefs.activity_assessmentfeedback_artefact_peerassessment.html │ │ ├── lib.php │ │ ├── peerassessment.json.php │ │ └── version.php │ ├── plans │ │ ├── block │ │ │ ├── checktask.json.php │ │ │ └── tasks.json.php │ │ ├── blocktype │ │ │ └── plans │ │ │ │ ├── js │ │ │ │ └── plansblock.js │ │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.plans.php │ │ │ │ ├── lib.php │ │ │ │ └── version.php │ │ ├── collection │ │ │ └── viewcontent.json.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── export │ │ │ ├── html │ │ │ │ └── lib.php │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── groupplans │ │ │ ├── get_plan_template.json.php │ │ │ └── toggle_grouptask.json.php │ │ ├── import │ │ │ └── leap │ │ │ │ └── lib.php │ │ ├── index.php │ │ ├── js │ │ │ ├── planedit.js │ │ │ ├── plannew.js │ │ │ ├── planview.js │ │ │ └── taskedit.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── artefact.plans.php │ │ │ │ └── help │ │ │ │ └── pages │ │ │ │ ├── groupplans.html │ │ │ │ └── index.html │ │ ├── lib.php │ │ ├── plan │ │ │ ├── delete.php │ │ │ ├── edit.php │ │ │ ├── new.php │ │ │ ├── tasks.json.php │ │ │ └── view.php │ │ ├── plans.json.php │ │ ├── task │ │ │ ├── delete.php │ │ │ ├── edit.php │ │ │ ├── new.php │ │ │ └── toggle_task_completed.json.php │ │ ├── tools │ │ │ ├── PlansTools.php │ │ │ └── ReminderTools.php │ │ ├── version.php │ │ └── view │ │ │ └── submit.php │ └── resume │ │ ├── achievements.php │ │ ├── blocktype │ │ ├── entireresume │ │ │ ├── lang │ │ │ │ └── en.utf8 │ │ │ │ │ └── blocktype.entireresume.php │ │ │ ├── lib.php │ │ │ └── version.php │ │ └── resumefield │ │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.resumefield.php │ │ │ ├── lib.php │ │ │ └── version.php │ │ ├── composite.json.php │ │ ├── compositedelete.json.php │ │ ├── compositemove.json.php │ │ ├── db │ │ ├── install.xml │ │ ├── temp.xml │ │ └── upgrade.php │ │ ├── editcomposite.php │ │ ├── editgoalsandskills.php │ │ ├── education.php │ │ ├── employment.php │ │ ├── export │ │ ├── html │ │ │ └── lib.php │ │ └── leap │ │ │ └── lib.php │ │ ├── goalsandskills.php │ │ ├── import │ │ └── leap │ │ │ └── lib.php │ │ ├── index.php │ │ ├── interests.php │ │ ├── js │ │ └── simpleresumefield.js │ │ ├── lang │ │ └── en.utf8 │ │ │ ├── artefact.resume.php │ │ │ └── help │ │ │ ├── forms │ │ │ ├── addbook.date.html │ │ │ ├── addbook.url.html │ │ │ ├── addcertification.date.html │ │ │ ├── addeducationhistory.startdate.html │ │ │ ├── addemploymenthistory.startdate.html │ │ │ ├── addmembership.startdate.html │ │ │ ├── book.date.html │ │ │ ├── book.url.html │ │ │ ├── certification.date.html │ │ │ ├── educationhistory.startdate.html │ │ │ ├── employmenthistory.startdate.html │ │ │ ├── membership.startdate.html │ │ │ ├── personalinformation.visastatus.html │ │ │ ├── resumefieldform.coverletterfs.html │ │ │ └── resumefieldform.interestfs.html │ │ │ ├── pages │ │ │ └── index.html │ │ │ └── sections │ │ │ ├── addbook.html │ │ │ ├── addcertification.html │ │ │ ├── addeducationhistory.html │ │ │ ├── addemploymenthistory.html │ │ │ ├── addmembership.html │ │ │ ├── browsemyfiles.html │ │ │ ├── mygoals.html │ │ │ └── myskills.html │ │ ├── lib.php │ │ ├── license.php │ │ ├── resume.css │ │ └── version.php ├── auth │ ├── imap │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── auth.imap.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ ├── auth_config.domainname.html │ │ │ │ └── auth_config.weautocreateusers.html │ │ ├── lib.php │ │ └── version.php │ ├── index.html │ ├── internal │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── auth.internal.php │ │ ├── lib.php │ │ └── version.php │ ├── ldap │ │ ├── cli │ │ │ ├── sync_groups.php │ │ │ ├── sync_groups_attribute.php │ │ │ └── sync_users.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── auth.ldap.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ ├── auth_config.bind_dn.html │ │ │ │ ├── auth_config.bind_pw.html │ │ │ │ ├── auth_config.contexts.html │ │ │ │ ├── auth_config.emailfield.html │ │ │ │ ├── auth_config.firstnamefield.html │ │ │ │ ├── auth_config.host_url.html │ │ │ │ ├── auth_config.loginlink.html │ │ │ │ ├── auth_config.preferrednamefield.html │ │ │ │ ├── auth_config.search_sub.html │ │ │ │ ├── auth_config.studentidfield.html │ │ │ │ ├── auth_config.surnamefield.html │ │ │ │ ├── auth_config.syncgroupsbyclass.html │ │ │ │ ├── auth_config.syncgroupsbyuserfield.html │ │ │ │ ├── auth_config.syncgroupscontexts.html │ │ │ │ ├── auth_config.syncgroupscron.html │ │ │ │ ├── auth_config.syncgroupsgroupattribute.html │ │ │ │ ├── auth_config.syncgroupsgroupclass.html │ │ │ │ ├── auth_config.syncgroupsmemberattribute.html │ │ │ │ ├── auth_config.syncgroupsmemberattributeisdn.html │ │ │ │ ├── auth_config.syncgroupsnestedgroups.html │ │ │ │ ├── auth_config.syncgroupsusergroupnames.html │ │ │ │ ├── auth_config.syncuserscron.html │ │ │ │ ├── auth_config.syncusersextrafilterattribute.html │ │ │ │ ├── auth_config.syncusersgonefromldap.html │ │ │ │ ├── auth_config.updateuserinfoonlogin.html │ │ │ │ ├── auth_config.user_attribute.html │ │ │ │ ├── auth_config.user_type.html │ │ │ │ ├── auth_config.version.html │ │ │ │ └── auth_config.weautocreateusers.html │ │ ├── lib.php │ │ └── version.php │ ├── lib.php │ ├── none │ │ ├── db │ │ │ └── upgrade.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── auth.none.php │ │ ├── lib.php │ │ └── version.php │ ├── plugintables.xml │ ├── saml │ │ ├── cli │ │ │ └── fetch_metadata.php │ │ ├── config │ │ │ ├── authsources.php │ │ │ ├── config-metarefresh.php │ │ │ └── config.php │ │ ├── db │ │ │ └── upgrade.php │ │ ├── extlib │ │ │ ├── _autoload.php │ │ │ └── modules │ │ │ │ ├── README.Mahara │ │ │ │ └── memcached │ │ │ │ ├── docs │ │ │ │ └── simplesamlphp-memcached.txt │ │ │ │ └── lib │ │ │ │ └── Store │ │ │ │ ├── Memcached.php │ │ │ │ └── Store.php │ │ ├── idpdelete.json.php │ │ ├── idpmetadata.json.php │ │ ├── index.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── auth.saml.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ ├── auth_config.authloginmsg.html │ │ │ │ ├── auth_config.emailaffiliations.html │ │ │ │ ├── auth_config.emailfield.html │ │ │ │ ├── auth_config.firstnamefield.html │ │ │ │ ├── auth_config.idaffiliations.html │ │ │ │ ├── auth_config.institutionattribute.html │ │ │ │ ├── auth_config.institutionidp.html │ │ │ │ ├── auth_config.institutionregex.html │ │ │ │ ├── auth_config.institutionvalue.html │ │ │ │ ├── auth_config.loginlink.html │ │ │ │ ├── auth_config.metarefresh_metadata_signature.html │ │ │ │ ├── auth_config.metarefresh_metadata_url.html │ │ │ │ ├── auth_config.remoteuser.html │ │ │ │ ├── auth_config.roleaffiliationdelimiter.html │ │ │ │ ├── auth_config.roleaffiliations.html │ │ │ │ ├── auth_config.roleprefix.html │ │ │ │ ├── auth_config.studentidfield.html │ │ │ │ ├── auth_config.surnamefield.html │ │ │ │ ├── auth_config.updateuserinfoonlogin.html │ │ │ │ ├── auth_config.user_attribute.html │ │ │ │ ├── auth_config.weautocreateusers.html │ │ │ │ ├── pluginconfig.sigalgo.html │ │ │ │ └── pluginconfig.spentityid.html │ │ ├── lib.php │ │ ├── sp │ │ │ ├── disco.php │ │ │ ├── metadata.php │ │ │ ├── module.php │ │ │ ├── saml1-acs.php │ │ │ ├── saml2-acs.php │ │ │ └── saml2-logout.php │ │ ├── validateurlsyntax.php │ │ └── version.php │ ├── session.php │ ├── user.php │ ├── webservice │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── auth.webservice.php │ │ │ │ └── help │ │ │ │ └── pages │ │ │ │ └── connections.html │ │ ├── lib.php │ │ └── version.php │ └── xmlrpc │ │ ├── jump.php │ │ ├── land.php │ │ ├── lang │ │ └── en.utf8 │ │ │ ├── auth.xmlrpc.php │ │ │ └── help │ │ │ ├── forms │ │ │ ├── auth_config.appname.html │ │ │ ├── auth_config.authloginmsg.html │ │ │ ├── auth_config.instancename.html │ │ │ ├── auth_config.ipaddress.html │ │ │ ├── auth_config.name.html │ │ │ ├── auth_config.parent.html │ │ │ ├── auth_config.ssodirection.html │ │ │ ├── auth_config.theyautocreateusers.html │ │ │ ├── auth_config.updateuserinfoonlogin.html │ │ │ ├── auth_config.weautocreateusers.html │ │ │ ├── auth_config.weimportcontent.html │ │ │ ├── auth_config.wwwroot.html │ │ │ ├── auth_xmlrpc.name.html │ │ │ ├── auth_xmlrpc.shortname.html │ │ │ ├── auth_xmlrpc.updateuserinfoonlogin.html │ │ │ └── auth_xmlrpc.xmlrpcserverurl.html │ │ │ └── sections │ │ │ └── networkservers.html │ │ ├── lib.php │ │ └── version.php ├── blocktype │ ├── beforetables.xml │ ├── blocktype.ajax.php │ ├── config.json.php │ ├── courseinfo │ │ ├── courses.json.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.courseinfo.php │ │ ├── lib.php │ │ └── version.php │ ├── creativecommons │ │ ├── README.txt │ │ ├── js │ │ │ └── creativecommons.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── blocktype.creativecommons.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ ├── instconf.noderivatives.html │ │ │ │ ├── instconf.noncommercial.html │ │ │ │ └── instconf.version.html │ │ ├── lib.php │ │ └── version.php │ ├── externalfeed │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── feedreader.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.externalfeed.php │ │ ├── lib.php │ │ └── version.php │ ├── externalvideo │ │ ├── db │ │ │ └── upgrade.php │ │ ├── embed_services │ │ │ ├── Embed_base.php │ │ │ └── embedly │ │ │ │ ├── embedservice.php │ │ │ │ └── favicon.png │ │ ├── js │ │ │ └── voki.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.externalvideo.php │ │ ├── lib.php │ │ ├── media_sources │ │ │ ├── Media_base.php │ │ │ ├── glogster │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── googlevideo │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── prezi │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── scivee │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── slideshare │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── teachertube │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── vimeo │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── voicethread │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── voki │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ ├── wikieducator │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ │ └── youtube │ │ │ │ ├── favicon.png │ │ │ │ └── mediasource.php │ │ └── version.php │ ├── extratables.xml │ ├── googleapps │ │ ├── LGPL-2.1 │ │ ├── README │ │ ├── images │ │ │ └── folder_documents.png │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── blocktype.googleapps.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ └── instconf.appsid.html │ │ ├── lib.php │ │ └── version.php │ ├── groupinfo │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.groupinfo.php │ │ ├── lib.php │ │ └── version.php │ ├── groupmembers │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.groupmembers.php │ │ ├── lib.php │ │ └── version.php │ ├── groupviews │ │ ├── allsubmissions.json.php │ │ ├── db │ │ │ └── upgrade.php │ │ ├── groupviews.json.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.groupviews.php │ │ ├── lib.php │ │ ├── nosubmissions.json.php │ │ ├── sharedcollections.json.php │ │ ├── sharedviews.json.php │ │ └── version.php │ ├── inbox │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.inbox.php │ │ ├── lib.php │ │ └── version.php │ ├── index.html │ ├── lib.php │ ├── myfriends │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.myfriends.php │ │ ├── lib.php │ │ ├── myfriends.json.php │ │ └── version.php │ ├── mygroups │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── blocktype.groups.php │ │ │ │ └── blocktype.mygroups.php │ │ ├── lib.php │ │ ├── mygroups.json.php │ │ └── version.php │ ├── myviews │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.myviews.php │ │ ├── lib.php │ │ ├── myviews.json.php │ │ └── version.php │ ├── navigation │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.navigation.php │ │ ├── lib.php │ │ └── version.php │ ├── newviews │ │ ├── db │ │ │ └── upgrade.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.newviews.php │ │ ├── lib.php │ │ └── version.php │ ├── openbadgedisplayer │ │ ├── badgegroupnames.json.php │ │ ├── badgrtoken.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── js │ │ │ ├── configform.js │ │ │ └── showdetails.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.openbadgedisplayer.php │ │ ├── lib.php │ │ └── version.php │ ├── placeholder │ │ ├── blockoptions.json.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.placeholder.php │ │ ├── lib.php │ │ └── version.php │ ├── recentforumposts │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.recentforumposts.php │ │ ├── lib.php │ │ └── version.php │ ├── text │ │ ├── cli │ │ │ └── convertnotes.php │ │ ├── db │ │ │ └── upgrade.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.text.php │ │ ├── lib.php │ │ └── version.php │ ├── verification │ │ ├── db │ │ │ └── install.xml │ │ ├── js │ │ │ └── configform.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── blocktype.verification.php │ │ ├── lib.php │ │ ├── verify.json.php │ │ └── version.php │ ├── wall │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── deletepost.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── blocktype.wall.php │ │ │ │ └── help │ │ │ │ └── forms │ │ │ │ └── activityprefs.activity_wallpost_blocktype_wall.html │ │ ├── lib.php │ │ ├── version.php │ │ └── wall.php │ └── watchlist │ │ ├── db │ │ └── upgrade.php │ │ ├── js │ │ └── configform.js │ │ ├── lang │ │ └── en.utf8 │ │ │ └── blocktype.watchlist.php │ │ ├── lib.php │ │ ├── version.php │ │ └── watchlist.json.php ├── changelanguage.php ├── collection │ ├── delete.php │ ├── deleteoutcome.json.php │ ├── edit.php │ ├── gettypehelpfilecontent.json.php │ ├── index.php │ ├── manageoutcomes.php │ ├── outcomesoverview.php │ ├── progresscompletion.php │ ├── updateactivity.json.php │ ├── updateoutcome.json.php │ ├── viewcontent.json.php │ ├── views.json.php │ └── views.php ├── config-dist.php ├── config-environment.php ├── contact.php ├── download.php ├── downloadarchive.php ├── edittags.php ├── export │ ├── TODO.txt │ ├── download-progress.php │ ├── download.php │ ├── html │ │ ├── TODO.txt │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── export.html.php │ │ ├── lib.php │ │ └── version.php │ ├── htmllite │ │ ├── README.md │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── export.htmllite.php │ │ ├── lib.php │ │ └── version.php │ ├── index.php │ ├── leap │ │ ├── TODO.txt │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── export.leap.php │ │ ├── lib.php │ │ └── version.php │ ├── lib.php │ ├── pdf │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── export.pdf.php │ │ ├── lib.php │ │ └── version.php │ └── pdflite │ │ ├── README.md │ │ ├── lang │ │ └── en.utf8 │ │ │ └── export.pdflite.php │ │ ├── lib.php │ │ └── version.php ├── favicon.ico ├── forgotpass.php ├── group │ ├── addlabel.json.php │ ├── addmembers.php │ ├── archives.json.php │ ├── archives.php │ ├── archivescsvdownload.php │ ├── changegroupsmembership.json.php │ ├── changerole.php │ ├── controlledgroups.json.php │ ├── copy.php │ ├── delete.php │ ├── edit.php │ ├── groupinfo.json.php │ ├── index.html │ ├── index.json.php │ ├── index.php │ ├── interactions.php │ ├── invite.php │ ├── inviteusers.php │ ├── label.json.php │ ├── leave.php │ ├── members.php │ ├── membersearchresults.json.php │ ├── outcomes.php │ ├── participationgroupviews.json.php │ ├── participationsharedviews.json.php │ ├── report.php │ ├── requestjoin.php │ ├── shareviews.php │ ├── suggest.php │ ├── topics.php │ └── view.php ├── grouptype │ ├── course │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── grouptype.course.php │ │ ├── lib.php │ │ └── version.php │ ├── index.html │ ├── lib.php │ ├── outcomes │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── grouptype.outcomes.php │ │ ├── lib.php │ │ └── version.php │ └── standard │ │ ├── lang │ │ └── en.utf8 │ │ │ └── grouptype.standard.php │ │ ├── lib.php │ │ └── version.php ├── homeinfo.json.php ├── import │ ├── TODO.txt │ ├── file │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── import.file.php │ │ ├── lib.php │ │ └── version.php │ ├── index.php │ ├── leap │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── import.leap.php │ │ ├── lib.php │ │ └── version.php │ └── lib.php ├── index.php ├── init.php ├── institution │ └── index.php ├── interaction │ ├── README │ ├── delete.php │ ├── edit.php │ ├── forum │ │ ├── atom.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── deletepost.php │ │ ├── deletetopic.php │ │ ├── editpost.php │ │ ├── edittopic.php │ │ ├── index.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ ├── forms │ │ │ │ │ ├── activityprefs.activity_newpost_interaction_forum.html │ │ │ │ │ ├── activityprefs.activity_postmoderation_interaction_forum.html │ │ │ │ │ ├── activityprefs.activity_reportpost_interaction_forum.html │ │ │ │ │ ├── edit_interaction.allowunsubscribe.html │ │ │ │ │ ├── edit_interaction.autosubscribe.html │ │ │ │ │ ├── edit_interaction.indentmode.html │ │ │ │ │ ├── subscribe_forum.submit.html │ │ │ │ │ └── subscribe_topic.submit.html │ │ │ │ └── sections │ │ │ │ │ ├── update.html │ │ │ │ │ └── updatemod.html │ │ │ │ └── interaction.forum.php │ │ ├── lib.php │ │ ├── rejectpost.php │ │ ├── reportpost.php │ │ ├── topic.php │ │ ├── unsubscribe.php │ │ ├── version.php │ │ └── view.php │ ├── index.html │ └── lib.php ├── js │ ├── DataTables │ │ ├── README.mahara │ │ ├── datatables.min.css │ │ └── datatables.min.js │ ├── accessibilityreorder.js │ ├── adminadduser.js │ ├── adminexportqueue.js │ ├── adminreleasesubmissions.js │ ├── adminsiteoptions.js │ ├── adminsitepages.js │ ├── adminuploadcsv.js │ ├── adminusersearch.js │ ├── ajaxblocks.js │ ├── bootstrap-datetimepicker │ │ ├── README.Mahara │ │ ├── bootstrap-datetimepicker.min.js │ │ └── tempusdominus-bootstrap-4.js │ ├── bootstrap-ratings.js │ ├── chartjs │ │ ├── README.Mahara │ │ └── dist │ │ │ ├── Chart.min.js │ │ │ └── LICENSE.md │ ├── clipboard │ │ ├── README.Mahara │ │ └── clipboard.min.js │ ├── collection-navigation.js │ ├── cookieconsent │ │ ├── README.mahara │ │ └── cookieconsent.min.js │ ├── dragondrop │ │ ├── README.mahara │ │ └── dragon-drop.js │ ├── dropdown-nav.js │ ├── dropzone │ │ ├── README.mahara │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ ├── export.js │ ├── formchangechecker.js │ ├── gridlayout.js │ ├── gridstack │ │ ├── README.mahara │ │ └── gridstack_modules │ │ │ ├── gridstack-h5.js │ │ │ ├── gridstack-h5.js.LICENSE.txt │ │ │ ├── gridstack-h5.js.map │ │ │ ├── gridstack-jq.d.ts │ │ │ ├── gridstack-jq.js │ │ │ ├── gridstack-jq.js.LICENSE.txt │ │ │ └── gridstack-jq.js.map │ ├── groupbox.js │ ├── index.html │ ├── jTLine │ │ ├── LICENSE │ │ ├── README.Mahara │ │ ├── README.md │ │ └── js │ │ │ ├── data.json │ │ │ ├── jquery.mobile.custom.min.js │ │ │ ├── jtline.js │ │ │ └── modernizr.js │ ├── javascript-templates │ │ ├── LICENSE.txt │ │ ├── README.Mahara │ │ ├── README.md │ │ └── js │ │ │ ├── compile.js │ │ │ ├── runtime.js │ │ │ ├── tmpl.js │ │ │ ├── tmpl.min.js │ │ │ └── tmpl.min.js.map │ ├── jquery │ │ ├── README.Mahara │ │ ├── jquery-mobile │ │ │ ├── README.Mahara │ │ │ └── jquery.mobile.custom.min.js │ │ ├── jquery-ui │ │ │ ├── README.Mahara │ │ │ ├── css │ │ │ │ └── smoothness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui.min.css │ │ │ └── js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ └── jquery-ui.touch-punch.min.js │ │ └── jquery.js │ ├── jscolor │ │ ├── README.Mahara │ │ └── jscolor.js │ ├── jsoneditor │ │ ├── LICENSE │ │ ├── README.Mahara │ │ ├── README.md │ │ └── src │ │ │ └── dist │ │ │ ├── jsoneditor.js │ │ │ └── jsoneditor.js.map │ ├── mahara.js │ ├── manage-collection-pages.js │ ├── marked │ │ ├── README.Mahara │ │ └── marked.min.js │ ├── masonry │ │ ├── README.Mahara │ │ └── masonry.min.js │ ├── momentjs │ │ ├── README.Mahara │ │ └── moment-with-locales.min.js │ ├── paginator.js │ ├── popper │ │ ├── README.Mahara │ │ └── popper.min.js │ ├── preview.js │ ├── privacy.js │ ├── searchtable.js │ ├── select2 │ │ ├── LICENSE.md │ │ ├── README.Mahara │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ └── select2.full.js │ ├── switchbox.js │ ├── tablerenderer.js │ ├── textareamaxlengthchecker.js │ ├── viewmenu.js │ ├── views.js │ └── zxcvbn │ │ ├── LICENSE.txt │ │ ├── README.Mahara │ │ └── zxcvbn.js ├── json │ ├── friendsearch.php │ ├── graphdata.php │ ├── help.php │ ├── imagebrowser.json.php │ ├── index.html │ ├── outcomes.php │ ├── outcomesnewform.php │ ├── privacystatement.php │ ├── progress_meter.php │ ├── quota.php │ ├── relatedtagsearch.php │ ├── selfsearch.php │ ├── sharedviews.php │ ├── stats_setting.php │ ├── taglist.php │ ├── tagsearch.php │ ├── termsandconditions.php │ ├── tinymceviewlist.json.php │ ├── topics.php │ ├── usersearch.php │ └── viewlist.php ├── lang │ ├── en.utf8 │ │ ├── account.php │ │ ├── activity.php │ │ ├── admin.php │ │ ├── auth.php │ │ ├── behat.php │ │ ├── collection.php │ │ ├── cookieconsent.php │ │ ├── error.php │ │ ├── export.php │ │ ├── group.php │ │ ├── help │ │ │ ├── forms │ │ │ │ ├── ANY.license.html │ │ │ │ ├── ANY.licensedefault.html │ │ │ │ ├── ANY.licensor.html │ │ │ │ ├── ANY.licensorurl.html │ │ │ │ ├── ANY.submittedstatus.html │ │ │ │ ├── ANY.tags.html │ │ │ │ ├── accesslist.accessrules.html │ │ │ │ ├── accesslist.numviews.html │ │ │ │ ├── accesslist.owner.html │ │ │ │ ├── accesslist.views.html │ │ │ │ ├── accountprefs.addremovecolumns.html │ │ │ │ ├── accountprefs.friendscontrol.html │ │ │ │ ├── accountprefs.lang.html │ │ │ │ ├── accountprefs.maildisabled.html │ │ │ │ ├── accountprefs.messages.html │ │ │ │ ├── accountprefs.mobileuploadtoken.html │ │ │ │ ├── accountprefs.oldpassword.html │ │ │ │ ├── accountprefs.showhomeinfo.html │ │ │ │ ├── accountprefs.theme.html │ │ │ │ ├── accountprefs.wysiwyg.html │ │ │ │ ├── activityprefs.activity_contactus.html │ │ │ │ ├── activityprefs.activity_groupmessage.html │ │ │ │ ├── activityprefs.activity_institutionmessage.html │ │ │ │ ├── activityprefs.activity_maharamessage.html │ │ │ │ ├── activityprefs.activity_objectionable.html │ │ │ │ ├── activityprefs.activity_usermessage.html │ │ │ │ ├── activityprefs.activity_viewaccess.html │ │ │ │ ├── activityprefs.activity_viewaccessrevoke.html │ │ │ │ ├── activityprefs.activity_virusrelease.html │ │ │ │ ├── activityprefs.activity_virusrepeat.html │ │ │ │ ├── activityprefs.activity_watchlist.html │ │ │ │ ├── adduser.addremovecolumns.html │ │ │ │ ├── adduser.friendscontrol.html │ │ │ │ ├── adduser.lang.html │ │ │ │ ├── adduser.leap2afile.html │ │ │ │ ├── adduser.maildisabled.html │ │ │ │ ├── adduser.messages.html │ │ │ │ ├── adduser.showhomeinfo.html │ │ │ │ ├── adduser.wysiwyg.html │ │ │ │ ├── collaboration.annotations.html │ │ │ │ ├── collaboration.comments.html │ │ │ │ ├── collaboration.friends.html │ │ │ │ ├── collaboration.groups.html │ │ │ │ ├── collaboration.institutions.html │ │ │ │ ├── collaboration.public.html │ │ │ │ ├── collaboration.registered.html │ │ │ │ ├── collaboration.secreturls.html │ │ │ │ ├── collaboration.users.html │ │ │ │ ├── comparisons.artefacts.html │ │ │ │ ├── comparisons.blocks.html │ │ │ │ ├── comparisons.members.html │ │ │ │ ├── comparisons.posts.html │ │ │ │ ├── comparisons.views.html │ │ │ │ ├── completionverification.accessgranteddate.html │ │ │ │ ├── completionverification.completionpercentage.html │ │ │ │ ├── completionverification.dateverified.html │ │ │ │ ├── completionverification.portfoliocreationdate.html │ │ │ │ ├── completionverification.portfoliotitle.html │ │ │ │ ├── completionverification.revokedbyauthor.html │ │ │ │ ├── completionverification.revokedbyverifier.html │ │ │ │ ├── completionverification.templatetitle.html │ │ │ │ ├── content.modified.html │ │ │ │ ├── content.name.html │ │ │ │ ├── content.total.html │ │ │ │ ├── editaccess.startdate.html │ │ │ │ ├── editaccess.stopdate.html │ │ │ │ ├── editgroup.allowarchives.html │ │ │ │ ├── editgroup.category.html │ │ │ │ ├── editgroup.editroles.html │ │ │ │ ├── editgroup.grouptype.html │ │ │ │ ├── editgroup.hidemembers.html │ │ │ │ ├── editgroup.public.html │ │ │ │ ├── editgroup.usersautoadded.html │ │ │ │ ├── editgroup.viewnotify.html │ │ │ │ ├── edituser_site.admin.html │ │ │ │ ├── edituser_site.authinstance.html │ │ │ │ ├── edituser_site.email.html │ │ │ │ ├── edituser_site.maildisabled.html │ │ │ │ ├── edituser_site.probationpoints.html │ │ │ │ ├── edituser_site.remoteusername.html │ │ │ │ ├── edituser_site.staff.html │ │ │ │ ├── edituser_upload.expiry.html │ │ │ │ ├── groups.collections.html │ │ │ │ ├── groups.forums.html │ │ │ │ ├── groups.group.html │ │ │ │ ├── groups.groupcomments.html │ │ │ │ ├── groups.members.html │ │ │ │ ├── groups.posts.html │ │ │ │ ├── groups.sharedcomments.html │ │ │ │ ├── groups.sharedviews.html │ │ │ │ ├── groups.views.html │ │ │ │ ├── institution.allowinstitutionpublicviews.html │ │ │ │ ├── institution.allowinstitutionsmartevidence.html │ │ │ │ ├── institution.allowpeersviewcontent.html │ │ │ │ ├── institution.authplugin.html │ │ │ │ ├── institution.commentsortorder.html │ │ │ │ ├── institution.defaultmembershipperiod.html │ │ │ │ ├── institution.displayname.html │ │ │ │ ├── institution.dropdownmenu.html │ │ │ │ ├── institution.expiry.html │ │ │ │ ├── institution.institutionexpiry.html │ │ │ │ ├── institution.licensedefault.html │ │ │ │ ├── institution.lockedfields.html │ │ │ │ ├── institution.name.html │ │ │ │ ├── institution.outcomeportfolio.html │ │ │ │ ├── institution.progresscompletion.html │ │ │ │ ├── institution.registerallowed.html │ │ │ │ ├── institution.theme.html │ │ │ │ ├── license.icon.html │ │ │ │ ├── logins.count_active.html │ │ │ │ ├── logins.count_logins.html │ │ │ │ ├── masqueradereason.reason.html │ │ │ │ ├── masquerading.date.html │ │ │ │ ├── masquerading.masquerader.html │ │ │ │ ├── masquerading.reason.html │ │ │ │ ├── masquerading.user.html │ │ │ │ ├── pageactivity.blocks.html │ │ │ │ ├── pageactivity.collection.html │ │ │ │ ├── pageactivity.comments.html │ │ │ │ ├── pageactivity.created.html │ │ │ │ ├── pageactivity.modified.html │ │ │ │ ├── pageactivity.owner.html │ │ │ │ ├── pageactivity.view.html │ │ │ │ ├── pageactivity.visited.html │ │ │ │ ├── pageactivity.visits.html │ │ │ │ ├── register.username.html │ │ │ │ ├── searchviews.showsubmissions.html │ │ │ │ ├── settings.createtags.html │ │ │ │ ├── sharedviews.completionpercentage.html │ │ │ │ ├── sharedviews.verification.html │ │ │ │ ├── siteoptions.allowanonymouspages.html │ │ │ │ ├── siteoptions.allowpublicprofiles.html │ │ │ │ ├── siteoptions.allowpublicviews.html │ │ │ │ ├── siteoptions.antispam.html │ │ │ │ ├── siteoptions.country.html │ │ │ │ ├── siteoptions.createpublicgroups.html │ │ │ │ ├── siteoptions.defaultaccountinactiveexpire.html │ │ │ │ ├── siteoptions.defaultaccountinactivewarn.html │ │ │ │ ├── siteoptions.defaultaccountlifetime.html │ │ │ │ ├── siteoptions.defaultnotificationmethod.html │ │ │ │ ├── siteoptions.disableexternalresources.html │ │ │ │ ├── siteoptions.embeddedcontentdescription.html │ │ │ │ ├── siteoptions.eventlogenhancedsearch.html │ │ │ │ ├── siteoptions.eventloglevel.html │ │ │ │ ├── siteoptions.generatesitemap.html │ │ │ │ ├── siteoptions.institutionautosuspend.html │ │ │ │ ├── siteoptions.institutionexpirynotification.html │ │ │ │ ├── siteoptions.institutionstrictprivacy.html │ │ │ │ ├── siteoptions.internalnotificationexpire.html │ │ │ │ ├── siteoptions.lang.html │ │ │ │ ├── siteoptions.licensemetadata.html │ │ │ │ ├── siteoptions.loggedinprofileviewaccess.html │ │ │ │ ├── siteoptions.mathjax.html │ │ │ │ ├── siteoptions.noreplyaddress.html │ │ │ │ ├── siteoptions.pathtoclam.html │ │ │ │ ├── siteoptions.pathtofile.html │ │ │ │ ├── siteoptions.recaptchaonregisterform.html │ │ │ │ ├── siteoptions.remoteavatars.html │ │ │ │ ├── siteoptions.requireregistrationconfirm.html │ │ │ │ ├── siteoptions.searchplugin.html │ │ │ │ ├── siteoptions.sessionlifetime.html │ │ │ │ ├── siteoptions.sitename.html │ │ │ │ ├── siteoptions.smtphosts.html │ │ │ │ ├── siteoptions.smtpport.html │ │ │ │ ├── siteoptions.smtpsecure.html │ │ │ │ ├── siteoptions.spamhaus.html │ │ │ │ ├── siteoptions.surbl.html │ │ │ │ ├── siteoptions.theme.html │ │ │ │ ├── siteoptions.usersallowedmultipleinstitutions.html │ │ │ │ ├── siteoptions.viruschecking.html │ │ │ │ ├── siteoptions.wysiwyg.html │ │ │ │ ├── smartevidence.accessrules.html │ │ │ │ ├── smartevidence.collection.html │ │ │ │ ├── smartevidence.pagecount.html │ │ │ │ ├── submissions.archiveid.html │ │ │ │ ├── submissions.specialid.html │ │ │ │ ├── submissions.submittedto.html │ │ │ │ ├── uploadcsv.friendscontrol.html │ │ │ │ ├── uploadcsv.lang.html │ │ │ │ ├── uploadcsv.maildisabled.html │ │ │ │ ├── uploadcsv.messages.html │ │ │ │ ├── uploadcsv.showhomeinfo.html │ │ │ │ ├── uploadcsv.wysiwyg.html │ │ │ │ ├── useractivity.actions.html │ │ │ │ ├── useractivity.artefacts.html │ │ │ │ ├── useractivity.collections.html │ │ │ │ ├── useractivity.groups.html │ │ │ │ ├── useractivity.lastactivity.html │ │ │ │ ├── useractivity.lastlogin.html │ │ │ │ ├── useractivity.logins.html │ │ │ │ ├── useractivity.pages.html │ │ │ │ ├── users.created.html │ │ │ │ ├── users.loggedin.html │ │ │ │ ├── users.total.html │ │ │ │ ├── usersearch.email.html │ │ │ │ ├── webservice_oauth_server.application_uri.html │ │ │ │ ├── webservice_oauth_server.issuer.html │ │ │ │ └── webservice_oauth_server.platform_vendor_key.html │ │ │ ├── pages │ │ │ │ ├── account │ │ │ │ │ ├── activity.html │ │ │ │ │ ├── institutions.html │ │ │ │ │ ├── notifications.html │ │ │ │ │ └── preferences.html │ │ │ │ ├── admin │ │ │ │ │ ├── adminusers.html │ │ │ │ │ ├── behatsteps.html │ │ │ │ │ ├── blocktype.html │ │ │ │ │ ├── iframesites.html │ │ │ │ │ ├── institutions.html │ │ │ │ │ ├── institutionstaticpages.html │ │ │ │ │ ├── languagepacks.html │ │ │ │ │ ├── licenses.html │ │ │ │ │ ├── notifications.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ ├── sitemenu.html │ │ │ │ │ ├── sitepages.html │ │ │ │ │ ├── staffusers.html │ │ │ │ │ ├── suspendedusers.html │ │ │ │ │ └── usersearch.html │ │ │ │ ├── collection │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── editaccess.html │ │ │ │ │ ├── outcomeoverview.html │ │ │ │ │ ├── progress.html │ │ │ │ │ ├── type.html │ │ │ │ │ └── views.html │ │ │ │ ├── export │ │ │ │ │ └── index.html │ │ │ │ ├── group │ │ │ │ │ ├── index.html │ │ │ │ │ └── topics.html │ │ │ │ ├── import │ │ │ │ │ └── index.html │ │ │ │ ├── site │ │ │ │ │ ├── contact.html │ │ │ │ │ ├── forgotpass.html │ │ │ │ │ └── register.html │ │ │ │ ├── skin │ │ │ │ │ ├── design.html │ │ │ │ │ ├── import.html │ │ │ │ │ └── index.html │ │ │ │ ├── user │ │ │ │ │ └── index.html │ │ │ │ └── view │ │ │ │ │ ├── blocks.html │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── editaccess.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── publicaccessrevoked.html │ │ │ │ │ ├── share.html │ │ │ │ │ ├── sharedviews.html │ │ │ │ │ ├── skin.html │ │ │ │ │ └── urls.html │ │ │ └── sections │ │ │ │ ├── activitytypeselect.html │ │ │ │ ├── adminexternallink.html │ │ │ │ ├── adminmenuedit.html │ │ │ │ ├── adminmenuselect.html │ │ │ │ ├── adminsitefile.html │ │ │ │ ├── changeviewlayout.html │ │ │ │ ├── createviewbutton.html │ │ │ │ ├── createviewtemplateselect.html │ │ │ │ ├── groupeditlink.html │ │ │ │ ├── loginbox.html │ │ │ │ ├── pendingmembershipheader.html │ │ │ │ ├── statisticslogins.html │ │ │ │ ├── viewmenu.html │ │ │ │ └── watchlistselectall.html │ │ ├── import.php │ │ ├── install.php │ │ ├── langconfig.php │ │ ├── langpacks.php │ │ ├── mahara.php │ │ ├── performance.php │ │ ├── pieforms.php │ │ ├── skin.php │ │ ├── statistics.php │ │ ├── view.php │ │ └── webservices.php │ ├── get_string.php │ └── index.html ├── legal.php ├── lib │ ├── access.php │ ├── accesscontrol.php │ ├── activity.php │ ├── activity │ │ ├── ActivityType.php │ │ ├── ActivityTypeAdmin.php │ │ ├── ActivityTypeContactus.php │ │ ├── ActivityTypeGroupMessage.php │ │ ├── ActivityTypeInstitutionmessage.php │ │ ├── ActivityTypeMaharamessage.php │ │ ├── ActivityTypeObjectionable.php │ │ ├── ActivityTypePlugin.php │ │ ├── ActivityTypeUsermessage.php │ │ ├── ActivityTypeViewAccess.php │ │ ├── ActivityTypeViewAccessRevoke.php │ │ ├── ActivityTypeVirusRelease.php │ │ ├── ActivityTypeVirusRepeat.php │ │ ├── ActivityTypeWatchlist.php │ │ └── ActivityTypeWatchlistnotification.php │ ├── antispam.php │ ├── antispam │ │ ├── AdvancedSpamTrap.php │ │ ├── NoneSpamTrap.php │ │ └── SimpleSpamTrap.php │ ├── application.php │ ├── applicationset.php │ ├── bootstrap │ │ └── assets │ │ │ └── javascripts │ │ │ └── README.Mahara │ ├── cli.php │ ├── collection.php │ ├── config-defaults.php │ ├── cookieconsent.php │ ├── country.php │ ├── cron.php │ ├── csvfile.php │ ├── db │ │ ├── install.xml │ │ ├── plugintables.xml │ │ └── upgrade.php │ ├── ddl.php │ ├── dml.php │ ├── dwoo │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.Mahara │ │ ├── README.md │ │ ├── composer.json │ │ ├── dwoo │ │ │ └── Dwoo │ │ │ │ ├── Block │ │ │ │ └── Plugin.php │ │ │ │ ├── Compilation │ │ │ │ └── Exception.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── Core.php │ │ │ │ ├── Data.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── ICompilable.php │ │ │ │ ├── ICompilable │ │ │ │ └── Block.php │ │ │ │ ├── ICompiler.php │ │ │ │ ├── IDataProvider.php │ │ │ │ ├── IElseable.php │ │ │ │ ├── ILoader.php │ │ │ │ ├── IPluginProxy.php │ │ │ │ ├── ITemplate.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Plugins │ │ │ │ ├── Blocks │ │ │ │ │ ├── PluginA.php │ │ │ │ │ ├── PluginAutoEscape.php │ │ │ │ │ ├── PluginBlock.php │ │ │ │ │ ├── PluginCapture.php │ │ │ │ │ ├── PluginDynamic.php │ │ │ │ │ ├── PluginElse.php │ │ │ │ │ ├── PluginElseif.php │ │ │ │ │ ├── PluginFor.php │ │ │ │ │ ├── PluginForeach.php │ │ │ │ │ ├── PluginForeachelse.php │ │ │ │ │ ├── PluginForelse.php │ │ │ │ │ ├── PluginIf.php │ │ │ │ │ ├── PluginLoop.php │ │ │ │ │ ├── PluginSection.php │ │ │ │ │ ├── PluginSmartyinterface.php │ │ │ │ │ ├── PluginStrip.php │ │ │ │ │ ├── PluginTemplate.php │ │ │ │ │ ├── PluginTextformat.php │ │ │ │ │ ├── PluginTopLevelBlock.php │ │ │ │ │ ├── PluginWith.php │ │ │ │ │ └── PluginWithelse.php │ │ │ │ ├── Filters │ │ │ │ │ └── PluginHtmlFormat.php │ │ │ │ ├── Functions │ │ │ │ │ ├── PluginAssign.php │ │ │ │ │ ├── PluginCapitalize.php │ │ │ │ │ ├── PluginCat.php │ │ │ │ │ ├── PluginCountCharacters.php │ │ │ │ │ ├── PluginCountParagraphs.php │ │ │ │ │ ├── PluginCountSentences.php │ │ │ │ │ ├── PluginCountWords.php │ │ │ │ │ ├── PluginCounter.php │ │ │ │ │ ├── PluginCycle.php │ │ │ │ │ ├── PluginDateFormat.php │ │ │ │ │ ├── PluginDefault.php │ │ │ │ │ ├── PluginDump.php │ │ │ │ │ ├── PluginEol.php │ │ │ │ │ ├── PluginEscape.php │ │ │ │ │ ├── PluginEval.php │ │ │ │ │ ├── PluginExtends.php │ │ │ │ │ ├── PluginExtendsCheck.php │ │ │ │ │ ├── PluginFetch.php │ │ │ │ │ ├── PluginInclude.php │ │ │ │ │ ├── PluginIndent.php │ │ │ │ │ ├── PluginIsset.php │ │ │ │ │ ├── PluginLoadTemplates.php │ │ │ │ │ ├── PluginLower.php │ │ │ │ │ ├── PluginMailto.php │ │ │ │ │ ├── PluginMath.php │ │ │ │ │ ├── PluginNl2br.php │ │ │ │ │ ├── PluginOptional.php │ │ │ │ │ ├── PluginRegexReplace.php │ │ │ │ │ ├── PluginReplace.php │ │ │ │ │ ├── PluginReturn.php │ │ │ │ │ ├── PluginReverse.php │ │ │ │ │ ├── PluginSafe.php │ │ │ │ │ ├── PluginSpacify.php │ │ │ │ │ ├── PluginStringFormat.php │ │ │ │ │ ├── PluginStripTags.php │ │ │ │ │ ├── PluginTif.php │ │ │ │ │ ├── PluginTruncate.php │ │ │ │ │ ├── PluginUpper.php │ │ │ │ │ ├── PluginWhitespace.php │ │ │ │ │ └── PluginWordwrap.php │ │ │ │ ├── Helpers │ │ │ │ │ └── PluginArray.php │ │ │ │ └── Processors │ │ │ │ │ └── PluginSmartyCompatible.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Security │ │ │ │ ├── Exception.php │ │ │ │ └── Policy.php │ │ │ │ ├── Smarty │ │ │ │ ├── Adapter.php │ │ │ │ ├── Filter │ │ │ │ │ └── Adapter.php │ │ │ │ └── Processor │ │ │ │ │ └── Adapter.php │ │ │ │ └── Template │ │ │ │ ├── File.php │ │ │ │ └── Str.php │ │ ├── mahara │ │ │ ├── Dwoo_Mahara.php │ │ │ ├── Dwoo_Template_Mahara.php │ │ │ └── plugins │ │ │ │ ├── PluginCleanHtml.php │ │ │ │ ├── PluginContextualhelp.php │ │ │ │ ├── PluginDisplayDefaultName.php │ │ │ │ ├── PluginDisplayName.php │ │ │ │ ├── PluginIfconfig.php │ │ │ │ ├── PluginIntval.php │ │ │ │ ├── PluginListTags.php │ │ │ │ ├── PluginLoadgroupquota.php │ │ │ │ ├── PluginLoadquota.php │ │ │ │ ├── PluginMaharaPerformanceInfo.php │ │ │ │ ├── PluginMaharaVersion.php │ │ │ │ ├── PluginProfileIconUrl.php │ │ │ │ ├── PluginProfileUrl.php │ │ │ │ ├── PluginStr.php │ │ │ │ ├── PluginStrShortenText.php │ │ │ │ ├── PluginThemeImageUrl.php │ │ │ │ └── PluginThemeUrl.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ └── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ └── autoload_static.php │ ├── embeddedimage.php │ ├── errors.php │ ├── file.php │ ├── fonts │ │ ├── Aurulent-OFL.txt │ │ ├── AurulentSans.ttf │ │ ├── CenturySchoolbookL.ttf │ │ ├── CharisSILR-OFL.txt │ │ ├── CharisSILR.ttf │ │ ├── DejaVu Fonts License.txt │ │ ├── DejaVuSans.ttf │ │ ├── NimbusMonoL.ttf │ │ ├── NimbusRomanNo9L.ttf │ │ ├── NimbusSansL.ttf │ │ ├── README.Mahara │ │ ├── URWBookmanL.ttf │ │ ├── URWChanceryL.ttf │ │ ├── URWGothicL.ttf │ │ └── URWPalladioL.ttf │ ├── form │ │ ├── elements │ │ │ ├── artefactchooser.php │ │ │ ├── authlist.php │ │ │ ├── autocomplete.php │ │ │ ├── cancelbackcreate.php │ │ │ ├── captcha.php │ │ │ ├── checkboxes.php │ │ │ ├── color.php │ │ │ ├── emaillist.php │ │ │ ├── filebrowser.php │ │ │ ├── files.php │ │ │ ├── multisubmit.php │ │ │ ├── multitext.php │ │ │ ├── passwordnoread.php │ │ │ ├── ratings.php │ │ │ ├── rolepermissions.php │ │ │ ├── switchbox.php │ │ │ ├── tags.php │ │ │ ├── tinywysiwyg.php │ │ │ ├── userlist.php │ │ │ ├── viewacl.php │ │ │ ├── weight.php │ │ │ └── wysiwyg.php │ │ ├── renderers │ │ │ └── maharatable.php │ │ └── rules │ │ │ └── .keep │ ├── function.dirsize.php │ ├── graph.php │ ├── gridstacklayout.php │ ├── group.php │ ├── htmlpurifier │ │ ├── README.Mahara │ │ └── schema.ser │ ├── htmlpurifiercustom │ │ ├── MixedContent.php │ │ ├── Skype.php │ │ ├── Twitter.php │ │ ├── Voki.php │ │ └── filters.xml │ ├── htmltotext │ │ └── htmltotext.php │ ├── imagebrowser.php │ ├── imageresizer.php │ ├── index.html │ ├── institution.php │ ├── layoutpreviewimage.php │ ├── license.php │ ├── mahara.php │ ├── manualhelp.php │ ├── objectionable.php │ ├── outcomes.php │ ├── peer.php │ ├── phpunit.php │ ├── pieforms │ │ ├── pieform.php │ │ ├── pieform │ │ │ ├── elements │ │ │ │ ├── button.php │ │ │ │ ├── bytes.php │ │ │ │ ├── calendar.php │ │ │ │ ├── cancel.php │ │ │ │ ├── checkbox.php │ │ │ │ ├── container.php │ │ │ │ ├── date.php │ │ │ │ ├── expiry.php │ │ │ │ ├── fieldset.php │ │ │ │ ├── file.php │ │ │ │ ├── hidden.php │ │ │ │ ├── html.php │ │ │ │ ├── image.php │ │ │ │ ├── password.php │ │ │ │ ├── passwordpolicy.php │ │ │ │ ├── radio.php │ │ │ │ ├── select.php │ │ │ │ ├── submit.php │ │ │ │ ├── submitcancel.php │ │ │ │ ├── text.php │ │ │ │ └── textarea.php │ │ │ ├── renderers │ │ │ │ ├── div.php │ │ │ │ ├── multicolumntable.php │ │ │ │ ├── oneline.php │ │ │ │ └── table.php │ │ │ └── rules │ │ │ │ ├── before.php │ │ │ │ ├── email.php │ │ │ │ ├── float.php │ │ │ │ ├── integer.php │ │ │ │ ├── maxlength.php │ │ │ │ ├── maxvalue.php │ │ │ │ ├── minlength.php │ │ │ │ ├── minvalue.php │ │ │ │ ├── oneof.php │ │ │ │ ├── regex.php │ │ │ │ ├── required.php │ │ │ │ ├── requiredby.php │ │ │ │ ├── safetext.php │ │ │ │ └── validateoptions.php │ │ └── static │ │ │ ├── core │ │ │ ├── elements │ │ │ │ └── authlist.js │ │ │ └── pieforms.js │ │ │ └── jscalendar │ │ │ ├── img.gif │ │ │ ├── menuarrow.gif │ │ │ ├── menuarrow2.gif │ │ │ └── skins │ │ │ └── aqua │ │ │ ├── active-bg.gif │ │ │ ├── dark-bg.gif │ │ │ ├── hover-bg.gif │ │ │ ├── menuarrow.gif │ │ │ ├── normal-bg.gif │ │ │ ├── rowhover-bg.gif │ │ │ ├── status-bg.gif │ │ │ ├── title-bg.gif │ │ │ └── today-bg.gif │ ├── processemail.php │ ├── redis │ │ └── sentinel.php │ ├── registration.php │ ├── revokemyaccess.php │ ├── searchlib.php │ ├── sitemap.php │ ├── skin.php │ ├── statistics.php │ ├── tests │ │ └── phpunit │ │ │ ├── ArtefactTest.php │ │ │ ├── LibmaharaTest.php │ │ │ ├── LibwebTest.php │ │ │ ├── README │ │ │ ├── ThemeTest.php │ │ │ ├── ViewTest.php │ │ │ └── bootstrap.php │ ├── upgrade.php │ ├── uploadmanager.php │ ├── user.php │ ├── version.php │ ├── view.php │ ├── web.php │ ├── xmldb │ │ ├── classes │ │ │ ├── XMLDBConstants.php │ │ │ ├── XMLDBField.class.php │ │ │ ├── XMLDBFile.class.php │ │ │ ├── XMLDBIndex.class.php │ │ │ ├── XMLDBKey.class.php │ │ │ ├── XMLDBObject.class.php │ │ │ ├── XMLDBStatement.class.php │ │ │ ├── XMLDBStructure.class.php │ │ │ ├── XMLDBTable.class.php │ │ │ └── generators │ │ │ │ ├── XMLDBGenerator.class.php │ │ │ │ ├── mssql │ │ │ │ └── mssql.class.php │ │ │ │ ├── mysql │ │ │ │ └── mysql.class.php │ │ │ │ ├── mysqli │ │ │ │ └── mysqli.class.php │ │ │ │ ├── oci8po │ │ │ │ └── oci8po.class.php │ │ │ │ ├── odbc_mssql │ │ │ │ └── odbc_mssql.class.php │ │ │ │ └── postgres │ │ │ │ └── postgres.class.php │ │ ├── xmldb.dtd │ │ └── xmldb.xsd │ └── xmlize.php ├── local │ ├── index.html │ ├── install.php │ ├── lang │ │ └── index.html │ ├── lib-dist.php │ ├── lib │ │ └── AuthSamlLocal.api.php │ ├── readme.txt │ ├── theme │ │ ├── index.html │ │ └── style │ │ │ └── style-dist.css │ ├── upgrade.php │ └── version.php ├── map │ └── componentmap.php ├── minilogin.php ├── module │ ├── assessmentreport │ │ ├── db │ │ │ └── install.xml │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── module.assessmentreport.php │ │ ├── lib.php │ │ └── version.php │ ├── framework │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── framework.json.php │ │ ├── frameworkmanager.php │ │ ├── frameworks.php │ │ ├── getframework.json.php │ │ ├── js │ │ │ ├── editor.js │ │ │ └── matrix.js │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── module.framework.php │ │ ├── lib.php │ │ ├── matrices │ │ │ ├── nace_usa.matrix │ │ │ ├── nz_teaching_standards_english.matrix │ │ │ └── nz_teaching_standards_te_reo_maori.matrix │ │ ├── matrix.php │ │ ├── matrixpoint.json.php │ │ ├── matrixstate.json.php │ │ └── version.php │ ├── lib.php │ ├── lti │ │ ├── configxml.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── graderedirect.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ └── forms │ │ │ │ │ ├── assessmentgrading.grade.html │ │ │ │ │ └── oauthconfigoptions.parentauth.html │ │ │ │ └── module.lti.php │ │ ├── lib.php │ │ ├── submission.php │ │ ├── tests │ │ │ └── phpunit │ │ │ │ └── ModuleltisubmissionTest.php │ │ ├── version.php │ │ └── webservice │ │ │ ├── functions │ │ │ └── module_lti_launch.php │ │ │ └── services.php │ ├── lti_advantage │ │ ├── database.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── deep_link.php │ │ ├── home.php │ │ ├── jwks.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── module.lti_advantage.php │ │ ├── lib.php │ │ ├── lib │ │ │ ├── ProductFamily.php │ │ │ ├── ProductFamilyDesire2learn.php │ │ │ ├── ProductFamilyMoodle.php │ │ │ ├── lti-1-3-php-library │ │ │ │ ├── LICENSE │ │ │ │ ├── README.mahara │ │ │ │ └── lti │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── Database.php │ │ │ │ │ ├── JWKS_Endpoint.php │ │ │ │ │ ├── LTI_Assignments_Grades_Service.php │ │ │ │ │ ├── LTI_Course_Groups_Service.php │ │ │ │ │ ├── LTI_Deep_Link.php │ │ │ │ │ ├── LTI_Deep_Link_Resource.php │ │ │ │ │ ├── LTI_Deployment.php │ │ │ │ │ ├── LTI_Exception.php │ │ │ │ │ ├── LTI_Grade.php │ │ │ │ │ ├── LTI_Grade_Submission_Review.php │ │ │ │ │ ├── LTI_Lineitem.php │ │ │ │ │ ├── LTI_Message_Launch.php │ │ │ │ │ ├── LTI_Names_Roles_Provisioning_Service.php │ │ │ │ │ ├── LTI_OIDC_Login.php │ │ │ │ │ ├── LTI_Registration.php │ │ │ │ │ ├── LTI_Service_Connector.php │ │ │ │ │ ├── Message_Validator.php │ │ │ │ │ ├── OIDC_Exception.php │ │ │ │ │ ├── Redirect.php │ │ │ │ │ ├── lti.php │ │ │ │ │ └── message_validators │ │ │ │ │ ├── deep_link_message_validator.php │ │ │ │ │ ├── resource_message_validator.php │ │ │ │ │ └── submission_review_message_validator.php │ │ │ ├── php-jwt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.mahara │ │ │ │ ├── README.md │ │ │ │ └── src │ │ │ │ │ ├── BeforeValidException.php │ │ │ │ │ ├── ExpiredException.php │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── JWT.php │ │ │ │ │ └── SignatureInvalidException.php │ │ │ └── phpseclib │ │ │ │ ├── LICENSE │ │ │ │ ├── README.mahara │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ └── phpseclib │ │ │ │ ├── Crypt │ │ │ │ ├── AES.php │ │ │ │ ├── Base.php │ │ │ │ ├── Blowfish.php │ │ │ │ ├── DES.php │ │ │ │ ├── Hash.php │ │ │ │ ├── RC2.php │ │ │ │ ├── RC4.php │ │ │ │ ├── RSA.php │ │ │ │ ├── Random.php │ │ │ │ ├── Rijndael.php │ │ │ │ ├── TripleDES.php │ │ │ │ └── Twofish.php │ │ │ │ ├── File │ │ │ │ ├── ANSI.php │ │ │ │ ├── ASN1.php │ │ │ │ ├── ASN1 │ │ │ │ │ └── Element.php │ │ │ │ └── X509.php │ │ │ │ ├── Math │ │ │ │ └── BigInteger.php │ │ │ │ ├── Net │ │ │ │ ├── SCP.php │ │ │ │ ├── SFTP.php │ │ │ │ ├── SFTP │ │ │ │ │ └── Stream.php │ │ │ │ ├── SSH1.php │ │ │ │ └── SSH2.php │ │ │ │ ├── System │ │ │ │ └── SSH │ │ │ │ │ ├── Agent.php │ │ │ │ │ └── Agent │ │ │ │ │ └── Identity.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── openssl.cnf │ │ ├── login.php │ │ ├── version.php │ │ └── webservice │ │ │ ├── functions │ │ │ └── module_lti_advantage_launch.php │ │ │ └── services.php │ ├── mobileapi │ │ ├── apps.php │ │ ├── download.php │ │ ├── json │ │ │ ├── info.php │ │ │ └── token.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── module.mobileapi.php │ │ ├── lib.php │ │ ├── tokenform.php │ │ ├── version.php │ │ └── webservice │ │ │ ├── functions │ │ │ ├── module_mobileapi_sync.php │ │ │ └── module_mobileapi_upload.php │ │ │ └── services.php │ ├── monitor │ │ ├── README.md │ │ ├── cli │ │ │ ├── croncheck.php │ │ │ ├── elasticsearchcheck.php │ │ │ ├── ldaplookupcheck.php │ │ │ ├── ldapsuspendeduserscheck.php │ │ │ └── searchcheck.php │ │ ├── ecs │ │ │ ├── croncheck.php │ │ │ ├── elasticsearchcheck.php │ │ │ ├── ldaplookupcheck.php │ │ │ ├── ldapsuspendeduserscheck.php │ │ │ └── searchcheck.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── module.monitor.php │ │ ├── lib.php │ │ ├── monitor.json.php │ │ ├── monitor.php │ │ ├── type │ │ │ ├── MonitorType_elasticsearch.php │ │ │ ├── MonitorType_ldaplookup.php │ │ │ ├── MonitorType_ldapsuspendedusers.php │ │ │ ├── MonitorType_processes.php │ │ │ ├── MonitorType_search.md │ │ │ └── MonitorType_search.php │ │ └── version.php │ ├── multirecipientnotification │ │ ├── db │ │ │ ├── delete_plugin_from_db.sql │ │ │ └── install.xml │ │ ├── inbox.php │ │ ├── indexin.json.php │ │ ├── indexout.json.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ └── pages │ │ │ │ │ ├── inbox.html │ │ │ │ │ └── outbox.html │ │ │ │ └── module.multirecipientnotification.php │ │ ├── lib.php │ │ ├── lib │ │ │ ├── activityextend.php │ │ │ ├── multirecipientnotification.php │ │ │ └── multirecipientnotificationsearch.php │ │ ├── notification │ │ │ └── ActivityTypeMultirecipientmessage.php │ │ ├── outbox.php │ │ ├── sendmessage.json.php │ │ ├── sendmessage.php │ │ └── version.php │ └── submissions │ │ ├── README.mahara │ │ ├── composer.json │ │ ├── db │ │ ├── install.xml │ │ └── upgrade.php │ │ ├── index.json.php │ │ ├── index.php │ │ ├── init.php │ │ ├── js │ │ ├── UrlFlashback.js │ │ ├── caret-down-solid.svg │ │ ├── piertables.css │ │ └── piertables.js │ │ ├── lang │ │ └── en.utf8 │ │ │ ├── help │ │ │ └── pages │ │ │ │ ├── groupindex.html │ │ │ │ └── index.html │ │ │ └── module.submissions.php │ │ ├── lib.php │ │ ├── release.json.php │ │ ├── src │ │ ├── Controller.php │ │ ├── Models │ │ │ ├── AbstractModel.php │ │ │ ├── Evaluation.php │ │ │ └── Submission.php │ │ ├── Repository │ │ │ ├── EvaluationRepository.php │ │ │ └── SubmissionRepository.php │ │ └── Tools │ │ │ ├── EvaluationTools.php │ │ │ ├── SubmissionTools.php │ │ │ └── UrlFlashback.php │ │ ├── vendor │ │ ├── autoload.php │ │ └── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ └── version.php ├── notification │ ├── email │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── notification.email.php │ │ ├── lib.php │ │ └── version.php │ ├── emaildigest │ │ ├── db │ │ │ └── install.xml │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── notification.emaildigest.php │ │ ├── lib.php │ │ └── version.php │ ├── index.html │ ├── internal │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ └── notification.internal.php │ │ ├── lib.php │ │ └── version.php │ └── lib.php ├── package.json ├── register.php ├── relatedtags.php ├── robots.txt ├── search │ ├── elasticsearch │ │ ├── cron.php │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── elasticsearchartefacttypesmap.txt │ │ ├── filter.js │ │ ├── index.php │ │ ├── jquery.storage.js │ │ ├── json │ │ │ └── elasticsearch.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ └── forms │ │ │ │ │ ├── pluginconfig.analyzer.html │ │ │ │ │ ├── pluginconfig.bypassindexname.html │ │ │ │ │ ├── pluginconfig.host.html │ │ │ │ │ ├── pluginconfig.indexingpassword.html │ │ │ │ │ ├── pluginconfig.indexingusername.html │ │ │ │ │ ├── pluginconfig.indexname.html │ │ │ │ │ ├── pluginconfig.password.html │ │ │ │ │ ├── pluginconfig.port.html │ │ │ │ │ ├── pluginconfig.scheme.html │ │ │ │ │ ├── pluginconfig.types.html │ │ │ │ │ └── pluginconfig.username.html │ │ │ │ └── search.elasticsearch.php │ │ ├── lib.php │ │ ├── type │ │ │ ├── ElasticsearchType_artefact.php │ │ │ ├── ElasticsearchType_block_instance.php │ │ │ ├── ElasticsearchType_collection.php │ │ │ ├── ElasticsearchType_event_log.php │ │ │ ├── ElasticsearchType_group.php │ │ │ ├── ElasticsearchType_interaction_forum_post.php │ │ │ ├── ElasticsearchType_interaction_instance.php │ │ │ ├── ElasticsearchType_usr.php │ │ │ └── ElasticsearchType_view.php │ │ ├── upgrade_elasticsearch.readme │ │ └── version.php │ ├── elasticsearch7 │ │ ├── README.md │ │ ├── db │ │ │ ├── install.xml │ │ │ └── upgrade.php │ │ ├── index.php │ │ ├── js │ │ │ ├── filter.js │ │ │ └── settings.js │ │ ├── json │ │ │ ├── enqueue.php │ │ │ └── search.php │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ └── forms │ │ │ │ │ └── pluginconfig.host.html │ │ │ │ └── search.elasticsearch7.php │ │ ├── lib.php │ │ ├── lib │ │ │ ├── Elasticsearch7FilterAcl.php │ │ │ ├── Elasticsearch7Indexing.php │ │ │ ├── Elasticsearch7Pseudotype_all.php │ │ │ ├── Elasticsearch7Type.php │ │ │ ├── Elasticsearch7Type_artefact.php │ │ │ ├── Elasticsearch7Type_block_instance.php │ │ │ ├── Elasticsearch7Type_collection.php │ │ │ ├── Elasticsearch7Type_event_log.php │ │ │ ├── Elasticsearch7Type_group.php │ │ │ ├── Elasticsearch7Type_interaction_forum_post.php │ │ │ ├── Elasticsearch7Type_interaction_instance.php │ │ │ ├── Elasticsearch7Type_usr.php │ │ │ ├── Elasticsearch7Type_view.php │ │ │ ├── PluginSearchElasticsearch7.php │ │ │ └── elasticsearchartefacttypesmap.txt │ │ └── version.php │ ├── index.html │ ├── index.php │ ├── internal │ │ ├── lang │ │ │ └── en.utf8 │ │ │ │ ├── help │ │ │ │ └── forms │ │ │ │ │ └── pluginconfig.exactusersearch.html │ │ │ │ └── search.internal.php │ │ ├── lib.php │ │ └── version.php │ └── lib.php ├── selfsearch.php ├── skin │ ├── css │ │ └── design.css │ ├── delete.php │ ├── design.php │ ├── export.php │ ├── favorite.php │ ├── font.php │ ├── import.php │ ├── index.php │ ├── licence.php │ ├── no-thumb.png │ ├── style.php │ └── thumb.php ├── style.php ├── tags.php ├── testing │ ├── classes │ │ ├── NastyStrings.php │ │ ├── TestLock.php │ │ ├── TestsFinder.php │ │ ├── generator │ │ │ ├── DataGeneratorBase.php │ │ │ ├── TestingDataGenerator.php │ │ │ └── lib.php │ │ └── util.php │ ├── frameworks │ │ └── behat │ │ │ ├── behat_steps_used.php │ │ │ ├── classes │ │ │ ├── BehatAccount.php │ │ │ ├── BehatAdmin.php │ │ │ ├── BehatBase.php │ │ │ ├── BehatCommand.php │ │ │ ├── BehatConfigManager.php │ │ │ ├── BehatContextHelper.php │ │ │ ├── BehatDataGenerators.php │ │ │ ├── BehatFieldManager.php │ │ │ ├── BehatForms.php │ │ │ ├── BehatGeneral.php │ │ │ ├── BehatHooks.php │ │ │ ├── BehatMaharaCoreContext.php │ │ │ ├── BehatNavigation.php │ │ │ ├── BehatSelectors.php │ │ │ ├── BehatView.php │ │ │ ├── FormFields │ │ │ │ ├── BehatFormCheckbox.php │ │ │ │ ├── BehatFormDateSelector.php │ │ │ │ ├── BehatFormDateTimeSelector.php │ │ │ │ ├── BehatFormEditor.php │ │ │ │ ├── BehatFormField.php │ │ │ │ ├── BehatFormFileManager.php │ │ │ │ ├── BehatFormRadio.php │ │ │ │ ├── BehatFormSelect.php │ │ │ │ ├── BehatFormSwitchbox.php │ │ │ │ ├── BehatFormText.php │ │ │ │ └── BehatFormTextarea.php │ │ │ ├── MaharaAwareInterface.php │ │ │ ├── properties.php │ │ │ └── util.php │ │ │ ├── cli │ │ │ ├── init.php │ │ │ └── util.php │ │ │ ├── extension │ │ │ ├── MaharaExtension.php │ │ │ └── config │ │ │ │ └── services.yml │ │ │ ├── html-formatter │ │ │ ├── Behat2Renderer.php │ │ │ ├── bootstrap.min.css │ │ │ ├── catalyst.css │ │ │ ├── index.html.twig │ │ │ └── style.css │ │ │ ├── lib.php │ │ │ ├── no_transitions.css │ │ │ └── page_status.js │ └── lib.php ├── theme │ ├── Readme.md │ ├── custom │ │ ├── js │ │ │ └── theme.js │ │ └── themeconfig.php │ ├── default │ │ ├── .gitignore │ │ ├── images │ │ │ ├── header-bkgd.png │ │ │ └── powered_by_mahara.svg │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── components │ │ │ │ ├── _arrow-bar.scss │ │ │ │ └── _btn.scss │ │ │ ├── features │ │ │ │ └── _dashboard-widget.scss │ │ │ ├── layout │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _profile-block.scss │ │ │ │ └── card │ │ │ │ │ ├── _card-header.scss │ │ │ │ │ ├── _card-secondary.scss │ │ │ │ │ └── _card.scss │ │ │ ├── style.scss │ │ │ ├── typography │ │ │ │ └── _tables.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ └── _theme-variables.scss │ │ └── themeconfig.php │ ├── index.html │ ├── maroon │ │ ├── .gitignore │ │ ├── fonts │ │ │ ├── README.Mahara │ │ │ ├── alegreya │ │ │ │ ├── OFL.txt │ │ │ │ ├── alegreya-v31-latin-ext_latin-700.eot │ │ │ │ ├── alegreya-v31-latin-ext_latin-700.svg │ │ │ │ ├── alegreya-v31-latin-ext_latin-700.ttf │ │ │ │ ├── alegreya-v31-latin-ext_latin-700.woff │ │ │ │ ├── alegreya-v31-latin-ext_latin-700.woff2 │ │ │ │ ├── alegreya-v31-latin-ext_latin-900.eot │ │ │ │ ├── alegreya-v31-latin-ext_latin-900.svg │ │ │ │ ├── alegreya-v31-latin-ext_latin-900.ttf │ │ │ │ ├── alegreya-v31-latin-ext_latin-900.woff │ │ │ │ └── alegreya-v31-latin-ext_latin-900.woff2 │ │ │ └── alegreyasans │ │ │ │ ├── OFL.txt │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300italic.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300italic.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300italic.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300italic.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-300italic.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700italic.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700italic.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700italic.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700italic.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-700italic.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900italic.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900italic.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900italic.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900italic.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-900italic.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-italic.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-italic.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-italic.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-italic.woff │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-italic.woff2 │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-regular.eot │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-regular.svg │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-regular.ttf │ │ │ │ ├── alegreya-sans-v24-latin-ext_latin-regular.woff │ │ │ │ └── alegreya-sans-v24-latin-ext_latin-regular.woff2 │ │ ├── images │ │ │ ├── powered_by_mahara.png │ │ │ ├── powered_by_mahara.svg │ │ │ ├── site-logo-small.png │ │ │ ├── site-logo-small.svg │ │ │ ├── site-logo.png │ │ │ └── site-logo.svg │ │ ├── plugintype │ │ │ └── export │ │ │ │ └── html │ │ │ │ └── templates │ │ │ │ └── header.tpl │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── components │ │ │ │ ├── _arrow-bar.scss │ │ │ │ ├── _btn.scss │ │ │ │ └── _list-group.scss │ │ │ ├── features │ │ │ │ ├── _collection-navigation.scss │ │ │ │ └── _dashboard-widget.scss │ │ │ ├── form │ │ │ │ └── _form.scss │ │ │ ├── layout │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _profile-block.scss │ │ │ │ ├── card │ │ │ │ │ ├── _card-header.scss │ │ │ │ │ ├── _card-secondary.scss │ │ │ │ │ └── _card.scss │ │ │ │ └── nav │ │ │ │ │ └── _navbar.scss │ │ │ ├── style.scss │ │ │ ├── typography │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _icons.scss │ │ │ │ └── _typography.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ └── _theme-variables.scss │ │ ├── templates │ │ │ ├── header │ │ │ │ ├── matrixheader.tpl │ │ │ │ ├── pageheader.tpl │ │ │ │ └── profileheader.tpl │ │ │ └── skin │ │ │ │ └── style.tpl │ │ └── themeconfig.php │ ├── modern │ │ ├── .gitignore │ │ ├── fonts │ │ │ ├── README.Mahara │ │ │ └── raleway │ │ │ │ ├── OFL.txt │ │ │ │ ├── raleway-v28-latin-ext_latin-300.eot │ │ │ │ ├── raleway-v28-latin-ext_latin-300.svg │ │ │ │ ├── raleway-v28-latin-ext_latin-300.ttf │ │ │ │ ├── raleway-v28-latin-ext_latin-300.woff │ │ │ │ ├── raleway-v28-latin-ext_latin-300.woff2 │ │ │ │ ├── raleway-v28-latin-ext_latin-300italic.eot │ │ │ │ ├── raleway-v28-latin-ext_latin-300italic.svg │ │ │ │ ├── raleway-v28-latin-ext_latin-300italic.ttf │ │ │ │ ├── raleway-v28-latin-ext_latin-300italic.woff │ │ │ │ ├── raleway-v28-latin-ext_latin-300italic.woff2 │ │ │ │ ├── raleway-v28-latin-ext_latin-700.eot │ │ │ │ ├── raleway-v28-latin-ext_latin-700.svg │ │ │ │ ├── raleway-v28-latin-ext_latin-700.ttf │ │ │ │ ├── raleway-v28-latin-ext_latin-700.woff │ │ │ │ ├── raleway-v28-latin-ext_latin-700.woff2 │ │ │ │ ├── raleway-v28-latin-ext_latin-italic.eot │ │ │ │ ├── raleway-v28-latin-ext_latin-italic.svg │ │ │ │ ├── raleway-v28-latin-ext_latin-italic.ttf │ │ │ │ ├── raleway-v28-latin-ext_latin-italic.woff │ │ │ │ ├── raleway-v28-latin-ext_latin-italic.woff2 │ │ │ │ ├── raleway-v28-latin-ext_latin-regular.eot │ │ │ │ ├── raleway-v28-latin-ext_latin-regular.svg │ │ │ │ ├── raleway-v28-latin-ext_latin-regular.ttf │ │ │ │ ├── raleway-v28-latin-ext_latin-regular.woff │ │ │ │ └── raleway-v28-latin-ext_latin-regular.woff2 │ │ ├── images │ │ │ ├── no_thumbnail.png │ │ │ ├── no_userphoto.png │ │ │ ├── no_userphoto16.png │ │ │ ├── no_userphoto20.png │ │ │ ├── no_userphoto25.png │ │ │ ├── no_userphoto40.png │ │ │ ├── no_userphoto50.png │ │ │ ├── no_userphoto60.png │ │ │ ├── powered_by_mahara.png │ │ │ ├── site-logo-small.png │ │ │ ├── site-logo-small.svg │ │ │ ├── site-logo.png │ │ │ └── site-logo.svg │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── form │ │ │ │ └── _form.scss │ │ │ ├── layout │ │ │ │ └── card │ │ │ │ │ ├── _card-header.scss │ │ │ │ │ └── _card.scss │ │ │ ├── style.scss │ │ │ ├── typography │ │ │ │ └── _fonts.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ └── _theme-variables.scss │ │ └── themeconfig.php │ ├── ocean │ │ ├── .gitignore │ │ ├── fonts │ │ │ ├── README.Mahara │ │ │ └── osvaldo │ │ │ │ ├── README │ │ │ │ ├── SIL Open Font License.txt │ │ │ │ ├── osvaldo-regular.eot │ │ │ │ ├── osvaldo-regular.svg │ │ │ │ ├── osvaldo-regular.ttf │ │ │ │ ├── osvaldo-regular.woff │ │ │ │ └── osvaldo-regular.woff2 │ │ ├── images │ │ │ ├── site-logo-small.png │ │ │ ├── site-logo-small.svg │ │ │ ├── site-logo.png │ │ │ └── site-logo.svg │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── features │ │ │ │ ├── _collection-navigation.scss │ │ │ │ └── _dashboard-widget.scss │ │ │ ├── style.scss │ │ │ ├── typography │ │ │ │ └── _fonts.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ └── _theme-variables.scss │ │ └── themeconfig.php │ ├── primaryschool │ │ ├── .gitignore │ │ ├── fonts │ │ │ ├── README.Mahara │ │ │ └── shadowsintolighttwo │ │ │ │ ├── OFL.txt │ │ │ │ ├── shadows-into-light-two-v13-latin-ext_latin-regular.eot │ │ │ │ ├── shadows-into-light-two-v13-latin-ext_latin-regular.svg │ │ │ │ ├── shadows-into-light-two-v13-latin-ext_latin-regular.ttf │ │ │ │ ├── shadows-into-light-two-v13-latin-ext_latin-regular.woff │ │ │ │ └── shadows-into-light-two-v13-latin-ext_latin-regular.woff2 │ │ ├── images │ │ │ ├── dash-create.png │ │ │ ├── dash-engage.png │ │ │ ├── dash-share.png │ │ │ ├── site-logo-small.png │ │ │ ├── site-logo-small.svg │ │ │ ├── site-logo.png │ │ │ └── site-logo.svg │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── components │ │ │ │ ├── _arrow-bar.scss │ │ │ │ └── _indicator.scss │ │ │ ├── features │ │ │ │ ├── _collection-navigation.scss │ │ │ │ ├── _dashboard-widget.scss │ │ │ │ └── _forum-post.scss │ │ │ ├── form │ │ │ │ └── _form-group.scss │ │ │ ├── layout │ │ │ │ ├── _col-collapse.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── card │ │ │ │ │ ├── _card-footer.scss │ │ │ │ │ ├── _card-header.scss │ │ │ │ │ └── _card-secondary.scss │ │ │ │ └── nav │ │ │ │ │ ├── _main-nav.scss │ │ │ │ │ └── _nav-tabs.scss │ │ │ ├── style.scss │ │ │ ├── typography │ │ │ │ └── _fonts.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ └── _theme-variables.scss │ │ ├── templates │ │ │ └── homeinfo.tpl │ │ └── themeconfig.php │ ├── raw │ │ ├── .gitignore │ │ ├── fonts │ │ │ ├── README.Mahara │ │ │ ├── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── font-awesome │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ ├── fa-v4compatibility.woff2 │ │ │ │ └── wf.tar │ │ │ ├── opensans │ │ │ │ ├── OFL.txt │ │ │ │ ├── open-sans-v34-latin-ext_latin-300.eot │ │ │ │ ├── open-sans-v34-latin-ext_latin-300.svg │ │ │ │ ├── open-sans-v34-latin-ext_latin-300.ttf │ │ │ │ ├── open-sans-v34-latin-ext_latin-300.woff │ │ │ │ ├── open-sans-v34-latin-ext_latin-300.woff2 │ │ │ │ ├── open-sans-v34-latin-ext_latin-300italic.eot │ │ │ │ ├── open-sans-v34-latin-ext_latin-300italic.svg │ │ │ │ ├── open-sans-v34-latin-ext_latin-300italic.ttf │ │ │ │ ├── open-sans-v34-latin-ext_latin-300italic.woff │ │ │ │ ├── open-sans-v34-latin-ext_latin-300italic.woff2 │ │ │ │ ├── open-sans-v34-latin-ext_latin-700.eot │ │ │ │ ├── open-sans-v34-latin-ext_latin-700.svg │ │ │ │ ├── open-sans-v34-latin-ext_latin-700.ttf │ │ │ │ ├── open-sans-v34-latin-ext_latin-700.woff │ │ │ │ ├── open-sans-v34-latin-ext_latin-700.woff2 │ │ │ │ ├── open-sans-v34-latin-ext_latin-italic.eot │ │ │ │ ├── open-sans-v34-latin-ext_latin-italic.svg │ │ │ │ ├── open-sans-v34-latin-ext_latin-italic.ttf │ │ │ │ ├── open-sans-v34-latin-ext_latin-italic.woff │ │ │ │ ├── open-sans-v34-latin-ext_latin-italic.woff2 │ │ │ │ ├── open-sans-v34-latin-ext_latin-regular.eot │ │ │ │ ├── open-sans-v34-latin-ext_latin-regular.svg │ │ │ │ ├── open-sans-v34-latin-ext_latin-regular.ttf │ │ │ │ ├── open-sans-v34-latin-ext_latin-regular.woff │ │ │ │ └── open-sans-v34-latin-ext_latin-regular.woff2 │ │ │ └── robotoslab │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-300.eot │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-300.svg │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-300.ttf │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-300.woff │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-300.woff2 │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-700.eot │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-700.svg │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-700.ttf │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-700.woff │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-700.woff2 │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-regular.eot │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-regular.svg │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-regular.ttf │ │ │ │ ├── roboto-slab-v24-latin-ext_latin-regular.woff │ │ │ │ └── roboto-slab-v24-latin-ext_latin-regular.woff2 │ │ ├── images │ │ │ ├── annotationfeedback.png │ │ │ ├── calendar.png │ │ │ ├── caret-down-solid.svg │ │ │ ├── feedback.png │ │ │ ├── gallery │ │ │ │ ├── flickr.png │ │ │ │ ├── photobucket.png │ │ │ │ ├── picasa.png │ │ │ │ └── windowslive.png │ │ │ ├── google-apps │ │ │ │ ├── google-books.png │ │ │ │ ├── google-calendar.png │ │ │ │ ├── google-drive.png │ │ │ │ └── google-maps.png │ │ │ ├── license │ │ │ │ ├── by-nc-nd.png │ │ │ │ ├── by-nc-sa.png │ │ │ │ ├── by-nc.png │ │ │ │ ├── by-nd.png │ │ │ │ ├── by-sa.png │ │ │ │ ├── by.png │ │ │ │ └── gfdl.png │ │ │ ├── maharamessage.png │ │ │ ├── no_thumbnail.png │ │ │ ├── no_userphoto.png │ │ │ ├── no_userphoto16.png │ │ │ ├── no_userphoto20.png │ │ │ ├── no_userphoto25.png │ │ │ ├── no_userphoto30.png │ │ │ ├── no_userphoto40.png │ │ │ ├── no_userphoto50.png │ │ │ ├── no_userphoto60.png │ │ │ ├── powered_by_mahara.png │ │ │ ├── powered_by_mahara.svg │ │ │ ├── select2 │ │ │ │ ├── select2-spinner.gif │ │ │ │ ├── select2.png │ │ │ │ └── select2x2.png │ │ │ ├── site-logo-dark.png │ │ │ ├── site-logo-dark.svg │ │ │ ├── site-logo-facebook.png │ │ │ ├── site-logo-light.png │ │ │ ├── site-logo-light.svg │ │ │ ├── site-logo-small-dark.png │ │ │ ├── site-logo-small-dark.svg │ │ │ ├── site-logo-small-light.png │ │ │ ├── site-logo-small-light.svg │ │ │ ├── site-logo-small.png │ │ │ ├── site-logo-small.svg │ │ │ ├── site-logo.png │ │ │ ├── site-logo.svg │ │ │ └── skin_preview_img.png │ │ ├── js │ │ │ ├── access.js │ │ │ ├── dock.js │ │ │ ├── filebrowser.js │ │ │ ├── formtabs.js │ │ │ ├── modal.js │ │ │ ├── notification.js │ │ │ ├── pieform.js │ │ │ └── theme.js │ │ ├── pieforms │ │ │ ├── adduser.php │ │ │ └── export.php │ │ ├── plugintype │ │ │ ├── artefact │ │ │ │ ├── annotation │ │ │ │ │ ├── blocktype │ │ │ │ │ │ └── annotation │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── annotation.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── annotationfeedbackmatrix.tpl │ │ │ │ │ │ ├── annotationfeedbackview.tpl │ │ │ │ │ │ ├── annotationlist.tpl │ │ │ │ │ │ ├── edit.tpl │ │ │ │ │ │ └── import │ │ │ │ │ │ └── annotations.tpl │ │ │ │ ├── blog │ │ │ │ │ ├── blocktype │ │ │ │ │ │ ├── blogpost │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── blogpost.tpl │ │ │ │ │ │ ├── recentposts │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── recentposts.tpl │ │ │ │ │ │ └── taggedposts │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── taggedposts.tpl │ │ │ │ │ ├── export │ │ │ │ │ │ └── html │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ │ └── summary.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── artefactchooser-element.tpl │ │ │ │ │ │ ├── atom.xml.tpl │ │ │ │ │ │ ├── blog.tpl │ │ │ │ │ │ ├── bloglist.tpl │ │ │ │ │ │ ├── blogpreview.tpl │ │ │ │ │ │ ├── editpost.tpl │ │ │ │ │ │ ├── import │ │ │ │ │ │ └── blogs.tpl │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ ├── posts.tpl │ │ │ │ │ │ ├── render │ │ │ │ │ │ ├── blogpost_render_in_modal.tpl │ │ │ │ │ │ ├── blogpost_renderattachments.tpl │ │ │ │ │ │ └── blogpost_renderfull.tpl │ │ │ │ │ │ ├── settings.tpl │ │ │ │ │ │ ├── view.tpl │ │ │ │ │ │ └── viewposts.tpl │ │ │ │ ├── checkpoint │ │ │ │ │ ├── blocktype │ │ │ │ │ │ └── checkpoint │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── achievement_levels_dropdown.tpl │ │ │ │ │ │ │ ├── achievement_levels_info.tpl │ │ │ │ │ │ │ ├── achievement_levels_result.tpl │ │ │ │ │ │ │ ├── checkpoint.tpl │ │ │ │ │ │ │ └── display_achievement_level.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── assessmentlist.tpl │ │ │ │ │ │ ├── editlink.tpl │ │ │ │ │ │ └── feedbacklist.tpl │ │ │ │ ├── comment │ │ │ │ │ ├── blocktype │ │ │ │ │ │ └── comment │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── comment.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── commentlist.tpl │ │ │ │ │ │ ├── edit.tpl │ │ │ │ │ │ └── replyplaceholder.tpl │ │ │ │ ├── file │ │ │ │ │ ├── blocktype │ │ │ │ │ │ ├── filedownload │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── filedownload.tpl │ │ │ │ │ │ │ │ └── filedownload_pdfexport.tpl │ │ │ │ │ │ ├── folder │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── folder.tpl │ │ │ │ │ │ ├── gallery │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── slideshow.tpl │ │ │ │ │ │ │ │ └── squarethumbs.tpl │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── html.tpl │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── image.tpl │ │ │ │ │ │ ├── internalmedia │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── internalmedia.tpl │ │ │ │ │ │ └── pdf │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── pdf.tpl │ │ │ │ │ │ │ └── pdfrender.tpl │ │ │ │ │ ├── export │ │ │ │ │ │ └── html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── file.gif │ │ │ │ │ │ │ └── folder.gif │ │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ │ └── summary.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── extract-progress.tpl │ │ │ │ │ │ ├── extract.tpl │ │ │ │ │ │ ├── file_render_self.tpl │ │ │ │ │ │ ├── files.tpl │ │ │ │ │ │ ├── folder_render_in_modal.tpl │ │ │ │ │ │ ├── folder_render_self.tpl │ │ │ │ │ │ ├── folder_render_self_pdfexport.tpl │ │ │ │ │ │ ├── form │ │ │ │ │ │ ├── editfile.tpl │ │ │ │ │ │ ├── filebrowser.tpl │ │ │ │ │ │ ├── filelist.tpl │ │ │ │ │ │ ├── folderpath.tpl │ │ │ │ │ │ ├── ownersubtabs.tpl │ │ │ │ │ │ ├── ownertabs.tpl │ │ │ │ │ │ └── selectedlist.tpl │ │ │ │ │ │ ├── image_render_self.tpl │ │ │ │ │ │ ├── import │ │ │ │ │ │ └── files.tpl │ │ │ │ │ │ └── profileicons.tpl │ │ │ │ ├── internal │ │ │ │ │ ├── blocktype │ │ │ │ │ │ ├── profileinfo │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── content.tpl │ │ │ │ │ │ ├── socialprofile │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ │ └── email.png │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── content.tpl │ │ │ │ │ │ └── textbox │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── content.tpl │ │ │ │ │ ├── export │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ │ │ ├── profilepage.tpl │ │ │ │ │ │ │ │ └── summary.tpl │ │ │ │ │ │ └── leap │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── entry.tpl │ │ │ │ │ ├── images │ │ │ │ │ │ └── note.png │ │ │ │ │ └── templates │ │ │ │ │ │ ├── artefactchooser-element.tpl │ │ │ │ │ │ ├── html-artefactchooser-element.tpl │ │ │ │ │ │ ├── import │ │ │ │ │ │ └── profilefields.tpl │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ ├── noteresults.tpl │ │ │ │ │ │ ├── notes.tpl │ │ │ │ │ │ ├── socialprofile.tpl │ │ │ │ │ │ ├── socialprofiles.tpl │ │ │ │ │ │ └── validate.tpl │ │ │ │ ├── peerassessment │ │ │ │ │ ├── blocktype │ │ │ │ │ │ └── peerassessment │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── peerassessment.tpl │ │ │ │ │ └── templates │ │ │ │ │ │ ├── assessmentlist.tpl │ │ │ │ │ │ ├── editlink.tpl │ │ │ │ │ │ └── import │ │ │ │ │ │ └── assessments.tpl │ │ │ │ ├── plans │ │ │ │ │ ├── blocktype │ │ │ │ │ │ └── plans │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── content.tpl │ │ │ │ │ ├── images │ │ │ │ │ │ ├── plan.png │ │ │ │ │ │ └── plantask.png │ │ │ │ │ └── templates │ │ │ │ │ │ ├── artefactchooser-element.tpl │ │ │ │ │ │ ├── export │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── summary.tpl │ │ │ │ │ │ └── leap │ │ │ │ │ │ │ └── plan.tpl │ │ │ │ │ │ ├── import │ │ │ │ │ │ └── plans.tpl │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ ├── indexplans.tpl │ │ │ │ │ │ ├── plan │ │ │ │ │ │ ├── delete.tpl │ │ │ │ │ │ ├── edit.tpl │ │ │ │ │ │ ├── new.tpl │ │ │ │ │ │ ├── view.tpl │ │ │ │ │ │ └── viewtasks.tpl │ │ │ │ │ │ ├── task │ │ │ │ │ │ ├── delete.tpl │ │ │ │ │ │ ├── edit.tpl │ │ │ │ │ │ └── new.tpl │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── plan.tpl │ │ │ │ │ │ └── plantasks.tpl │ │ │ │ └── resume │ │ │ │ │ ├── blocktype │ │ │ │ │ ├── entireresume │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── content.tpl │ │ │ │ │ └── resumefield │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── content.tpl │ │ │ │ │ ├── export │ │ │ │ │ ├── html │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ │ └── summary.tpl │ │ │ │ │ └── leap │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── composite.tpl │ │ │ │ │ └── templates │ │ │ │ │ ├── achievements.tpl │ │ │ │ │ ├── artefactchooser-element.tpl │ │ │ │ │ ├── editcomposite.tpl │ │ │ │ │ ├── editgoalsandskills.tpl │ │ │ │ │ ├── education.tpl │ │ │ │ │ ├── employment.tpl │ │ │ │ │ ├── fragments │ │ │ │ │ ├── attachments.tpl │ │ │ │ │ ├── book.tpl │ │ │ │ │ ├── certification.tpl │ │ │ │ │ ├── contactinformation.tpl │ │ │ │ │ ├── coverletter.tpl │ │ │ │ │ ├── educationhistory.tpl │ │ │ │ │ ├── employmenthistory.tpl │ │ │ │ │ ├── goals.tpl │ │ │ │ │ ├── goalsandskills.tpl │ │ │ │ │ ├── interest.tpl │ │ │ │ │ ├── membership.tpl │ │ │ │ │ ├── personalinformation.tpl │ │ │ │ │ └── skills.tpl │ │ │ │ │ ├── goalsandskills.tpl │ │ │ │ │ ├── import │ │ │ │ │ ├── resumecompositefields.tpl │ │ │ │ │ └── resumefields.tpl │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── interests.tpl │ │ │ │ │ └── licenses.tpl │ │ │ ├── auth │ │ │ │ ├── browserid │ │ │ │ │ └── templates │ │ │ │ │ │ └── statustable.tpl │ │ │ │ ├── saml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── disco.tpl │ │ │ │ │ │ ├── idpdelete.tpl │ │ │ │ │ │ ├── idpentityid.tpl │ │ │ │ │ │ ├── idpinstitutions.tpl │ │ │ │ │ │ ├── idplogo.tpl │ │ │ │ │ │ ├── idptable.tpl │ │ │ │ │ │ └── idptableconfig.tpl │ │ │ │ └── webservice │ │ │ │ │ ├── images │ │ │ │ │ └── btn-search.gif │ │ │ │ │ └── templates │ │ │ │ │ ├── addconnection.tpl │ │ │ │ │ ├── addconnectionform.tpl │ │ │ │ │ ├── atom.tpl │ │ │ │ │ ├── configform.tpl │ │ │ │ │ ├── connections.tpl │ │ │ │ │ ├── testclient.tpl │ │ │ │ │ ├── username.tpl │ │ │ │ │ ├── webservicelogs.tpl │ │ │ │ │ ├── wsdoc.tpl │ │ │ │ │ └── wsdoclist.tpl │ │ │ ├── blocktype │ │ │ │ ├── courseinfo │ │ │ │ │ └── templates │ │ │ │ │ │ ├── courseinfo.tpl │ │ │ │ │ │ └── courserows.tpl │ │ │ │ ├── creativecommons │ │ │ │ │ ├── images │ │ │ │ │ │ ├── by-3_0.png │ │ │ │ │ │ ├── by-nc-3_0.png │ │ │ │ │ │ ├── by-nc-nd-3_0.png │ │ │ │ │ │ ├── by-nc-sa-3_0.png │ │ │ │ │ │ ├── by-nd-3_0.png │ │ │ │ │ │ ├── by-sa-3_0.png │ │ │ │ │ │ └── seal.png │ │ │ │ │ └── templates │ │ │ │ │ │ └── statement.tpl │ │ │ │ ├── externalfeed │ │ │ │ │ └── templates │ │ │ │ │ │ └── feed.tpl │ │ │ │ ├── externalvideo │ │ │ │ │ └── templates │ │ │ │ │ │ ├── content.tpl │ │ │ │ │ │ ├── embedly.tpl │ │ │ │ │ │ ├── servicelist.tpl │ │ │ │ │ │ └── sitelist.tpl │ │ │ │ ├── googleapps │ │ │ │ │ └── templates │ │ │ │ │ │ ├── iframe.tpl │ │ │ │ │ │ ├── image.tpl │ │ │ │ │ │ ├── spanicon.tpl │ │ │ │ │ │ └── supported.tpl │ │ │ │ ├── groupinfo │ │ │ │ │ └── templates │ │ │ │ │ │ └── groupinfo.tpl │ │ │ │ ├── groupmembers │ │ │ │ │ └── templates │ │ │ │ │ │ ├── groupmembers.tpl │ │ │ │ │ │ └── row.tpl │ │ │ │ ├── groupviews │ │ │ │ │ └── templates │ │ │ │ │ │ ├── allsubmissions.tpl │ │ │ │ │ │ ├── groupviews.tpl │ │ │ │ │ │ ├── groupviewssection.tpl │ │ │ │ │ │ ├── nosubmissions.tpl │ │ │ │ │ │ └── sharedviews.tpl │ │ │ │ ├── inbox │ │ │ │ │ └── templates │ │ │ │ │ │ └── inboxmr.tpl │ │ │ │ ├── myfriends │ │ │ │ │ └── templates │ │ │ │ │ │ ├── myfriendrows.tpl │ │ │ │ │ │ └── myfriends.tpl │ │ │ │ ├── mygroups │ │ │ │ │ └── templates │ │ │ │ │ │ ├── mygroups.tpl │ │ │ │ │ │ └── mygroupslist.tpl │ │ │ │ ├── myviews │ │ │ │ │ └── templates │ │ │ │ │ │ ├── myviews.tpl │ │ │ │ │ │ ├── myviews_pdfexport.tpl │ │ │ │ │ │ └── myviewspaginator.tpl │ │ │ │ ├── navigation │ │ │ │ │ └── templates │ │ │ │ │ │ └── navigation.tpl │ │ │ │ ├── newviews │ │ │ │ │ └── templates │ │ │ │ │ │ └── newviews.tpl │ │ │ │ ├── openbadgedisplayer │ │ │ │ │ └── templates │ │ │ │ │ │ ├── badge.tpl │ │ │ │ │ │ └── openbadgedisplayer.tpl │ │ │ │ ├── placeholder │ │ │ │ │ └── templates │ │ │ │ │ │ ├── body.tpl │ │ │ │ │ │ ├── contenttypes.tpl │ │ │ │ │ │ └── contenttypeslist.tpl │ │ │ │ ├── recentforumposts │ │ │ │ │ └── templates │ │ │ │ │ │ ├── latestforumposts.tpl │ │ │ │ │ │ └── recentforumposts.tpl │ │ │ │ ├── text │ │ │ │ │ └── templates │ │ │ │ │ │ └── content.tpl │ │ │ │ ├── verification │ │ │ │ │ └── templates │ │ │ │ │ │ ├── commentlist.tpl │ │ │ │ │ │ └── content.tpl │ │ │ │ ├── wall │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deletepost.tpl │ │ │ │ │ │ ├── inlineposts.tpl │ │ │ │ │ │ └── wallposts.tpl │ │ │ │ └── watchlist │ │ │ │ │ └── templates │ │ │ │ │ ├── followeractivitypaginator.tpl │ │ │ │ │ ├── followerownerpaginator.tpl │ │ │ │ │ ├── watchlist.tpl │ │ │ │ │ └── watchlistpaginator.tpl │ │ │ ├── export │ │ │ │ ├── html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ └── rating_star.png │ │ │ │ │ ├── style │ │ │ │ │ │ ├── print.css │ │ │ │ │ │ └── style.css │ │ │ │ │ └── templates │ │ │ │ │ │ ├── collectionsummary.tpl │ │ │ │ │ │ ├── footer.tpl │ │ │ │ │ │ ├── header.tpl │ │ │ │ │ │ ├── htmllite_view.tpl │ │ │ │ │ │ ├── htmllite_view_content.tpl │ │ │ │ │ │ ├── index.tpl │ │ │ │ │ │ ├── modal.tpl │ │ │ │ │ │ ├── page.tpl │ │ │ │ │ │ ├── progresscompletion.tpl │ │ │ │ │ │ ├── view.tpl │ │ │ │ │ │ └── viewsummary.tpl │ │ │ │ └── leap │ │ │ │ │ └── templates │ │ │ │ │ ├── author.tpl │ │ │ │ │ ├── categories.tpl │ │ │ │ │ ├── entry.tpl │ │ │ │ │ ├── entryfooter.tpl │ │ │ │ │ ├── footer.tpl │ │ │ │ │ ├── header.tpl │ │ │ │ │ ├── links.tpl │ │ │ │ │ └── view.tpl │ │ │ ├── interaction │ │ │ │ └── forum │ │ │ │ │ ├── images │ │ │ │ │ └── objectionable.png │ │ │ │ │ └── templates │ │ │ │ │ ├── atom.xml.tpl │ │ │ │ │ ├── deletepost.tpl │ │ │ │ │ ├── deletetopic.tpl │ │ │ │ │ ├── editpost.tpl │ │ │ │ │ ├── edittopic.tpl │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── post.tpl │ │ │ │ │ ├── reportpost.tpl │ │ │ │ │ ├── simplepost.tpl │ │ │ │ │ ├── topic.tpl │ │ │ │ │ ├── topics.tpl │ │ │ │ │ └── view.tpl │ │ │ ├── module │ │ │ │ ├── framework │ │ │ │ │ └── templates │ │ │ │ │ │ ├── evidencestatus.tpl │ │ │ │ │ │ ├── frameworkmanager.tpl │ │ │ │ │ │ ├── frameworks.tpl │ │ │ │ │ │ ├── jsoneditor.tpl │ │ │ │ │ │ ├── matrix.tpl │ │ │ │ │ │ ├── matrixsumrow.tpl │ │ │ │ │ │ ├── noviewmatrix.tpl │ │ │ │ │ │ └── uploadframework.tpl │ │ │ │ ├── lti │ │ │ │ │ └── templates │ │ │ │ │ │ ├── config.tpl │ │ │ │ │ │ ├── statustable.tpl │ │ │ │ │ │ ├── submissions.tpl │ │ │ │ │ │ ├── submitforgrading.tpl │ │ │ │ │ │ ├── submittedforgrading.tpl │ │ │ │ │ │ ├── xmlmetadata.tpl │ │ │ │ │ │ └── xmlreplaceresult.tpl │ │ │ │ ├── lti_advantage │ │ │ │ │ └── templates │ │ │ │ │ │ └── deeplinkportfoliolist.tpl │ │ │ │ ├── mobileapi │ │ │ │ │ └── templates │ │ │ │ │ │ ├── statustable.tpl │ │ │ │ │ │ └── tokenform.tpl │ │ │ │ ├── monitor │ │ │ │ │ └── templates │ │ │ │ │ │ ├── elasticsearch.tpl │ │ │ │ │ │ ├── ldaplookup.tpl │ │ │ │ │ │ ├── ldapsuspendedusers.tpl │ │ │ │ │ │ ├── longrunningcronprocesses.tpl │ │ │ │ │ │ ├── monitor.tpl │ │ │ │ │ │ └── tasktable.tpl │ │ │ │ ├── multirecipientnotification │ │ │ │ │ └── templates │ │ │ │ │ │ ├── activitylistin.tpl │ │ │ │ │ │ ├── activitylistout.tpl │ │ │ │ │ │ ├── activitytype.tpl │ │ │ │ │ │ ├── indexin.tpl │ │ │ │ │ │ ├── indexout.tpl │ │ │ │ │ │ ├── indexsearch.tpl │ │ │ │ │ │ └── sendmessage.tpl │ │ │ │ └── submissions │ │ │ │ │ └── templates │ │ │ │ │ └── index.tpl │ │ │ └── search │ │ │ │ ├── elasticsearch │ │ │ │ └── templates │ │ │ │ │ ├── artefact.tpl │ │ │ │ │ ├── block_instance.tpl │ │ │ │ │ ├── collection.tpl │ │ │ │ │ ├── confignotice.tpl │ │ │ │ │ ├── configok.tpl │ │ │ │ │ ├── configwarning.tpl │ │ │ │ │ ├── facets.tpl │ │ │ │ │ ├── group.tpl │ │ │ │ │ ├── interaction_forum_post.tpl │ │ │ │ │ ├── interaction_instance.tpl │ │ │ │ │ ├── search-filter-content.tpl │ │ │ │ │ ├── search-filter-licence.tpl │ │ │ │ │ ├── search-filter-owner.tpl │ │ │ │ │ ├── search-sort.tpl │ │ │ │ │ ├── search_layout.tpl │ │ │ │ │ ├── searchresults.tpl │ │ │ │ │ ├── user.tpl │ │ │ │ │ └── view.tpl │ │ │ │ └── elasticsearch7 │ │ │ │ └── templates │ │ │ │ ├── artefact.tpl │ │ │ │ ├── block_instance.tpl │ │ │ │ ├── collection.tpl │ │ │ │ ├── facets.tpl │ │ │ │ ├── group.tpl │ │ │ │ ├── interaction_forum_post.tpl │ │ │ │ ├── interaction_instance.tpl │ │ │ │ ├── notice.tpl │ │ │ │ ├── plugin_status.tpl │ │ │ │ ├── search-filter-content.tpl │ │ │ │ ├── search-filter-licence.tpl │ │ │ │ ├── search-filter-owner.tpl │ │ │ │ ├── search-sort.tpl │ │ │ │ ├── search_layout.tpl │ │ │ │ ├── searchresults.tpl │ │ │ │ ├── table.tpl │ │ │ │ ├── user.tpl │ │ │ │ └── view.tpl │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── _shame.scss │ │ │ ├── components │ │ │ │ ├── _arrow-bar.scss │ │ │ │ ├── _artefactchooser.scss │ │ │ │ ├── _btn-group.scss │ │ │ │ ├── _btn.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _cells.scss │ │ │ │ ├── _contextual-help.scss │ │ │ │ ├── _custom-dropdown.scss │ │ │ │ ├── _datepicker.scss │ │ │ │ ├── _dropzone-previews.scss │ │ │ │ ├── _framework.scss │ │ │ │ ├── _indicator.scss │ │ │ │ ├── _label.scss │ │ │ │ ├── _link-thumb.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _loading-inner.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _outcomes.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _progresscompletion.scss │ │ │ │ ├── _switch.scss │ │ │ │ ├── _tags.scss │ │ │ │ ├── _toggles.scss │ │ │ │ └── _user-icon.scss │ │ │ ├── cookieconsent.scss │ │ │ ├── features │ │ │ │ ├── _collection-navigation.scss │ │ │ │ ├── _comment.scss │ │ │ │ ├── _coverimage-widget.scss │ │ │ │ ├── _dashboard-widget.scss │ │ │ │ ├── _filebrowser.scss │ │ │ │ ├── _forum-post.scss │ │ │ │ ├── _manage-collection.scss │ │ │ │ ├── _message-thread.scss │ │ │ │ ├── _notification.scss │ │ │ │ ├── _option-alt.scss │ │ │ │ ├── _plan-task.scss │ │ │ │ ├── _skiplink.scss │ │ │ │ ├── _timeline.scss │ │ │ │ └── _user-pages.scss │ │ │ ├── form │ │ │ │ ├── _alert.scss │ │ │ │ ├── _dropdown-group.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _form-group.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _input-group.scss │ │ │ │ └── _site-messages.scss │ │ │ ├── layout │ │ │ │ ├── _block-comments-details-header.scss │ │ │ │ ├── _col-collapse.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _gridlayout.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _profile-block.scss │ │ │ │ ├── card │ │ │ │ │ ├── _card-body.scss │ │ │ │ │ ├── _card-collapse.scss │ │ │ │ │ ├── _card-colors.scss │ │ │ │ │ ├── _card-control.scss │ │ │ │ │ ├── _card-footer.scss │ │ │ │ │ ├── _card-form.scss │ │ │ │ │ ├── _card-half.scss │ │ │ │ │ ├── _card-header.scss │ │ │ │ │ ├── _card-items.scss │ │ │ │ │ ├── _card-quarter.scss │ │ │ │ │ ├── _card-secondary.scss │ │ │ │ │ └── _card.scss │ │ │ │ └── nav │ │ │ │ │ ├── _main-nav.scss │ │ │ │ │ ├── _nav-tabs.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ └── _tabs.scss │ │ │ ├── lib │ │ │ │ ├── _cookieconsent.scss │ │ │ │ ├── _datatables.scss │ │ │ │ ├── _draggable.scss │ │ │ │ ├── _elasticsearch.scss │ │ │ │ ├── _graph.scss │ │ │ │ ├── _gridstack.scss │ │ │ │ ├── _mahara-select2.scss │ │ │ │ ├── _meter.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _star.scss │ │ │ │ ├── _tinymce.scss │ │ │ │ ├── bootstrap5 │ │ │ │ │ └── forms │ │ │ │ │ │ └── _form-check.scss │ │ │ │ ├── font-awesome │ │ │ │ │ ├── README.Mahara │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _shims.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── brands.scss │ │ │ │ │ ├── fontawesome.scss │ │ │ │ │ ├── regular.scss │ │ │ │ │ ├── solid.scss │ │ │ │ │ └── v4-shims.scss │ │ │ │ └── select2 │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ ├── core.scss │ │ │ │ │ ├── mixins │ │ │ │ │ └── _gradients.scss │ │ │ │ │ └── theme │ │ │ │ │ ├── classic │ │ │ │ │ ├── _defaults.scss │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ └── layout.scss │ │ │ │ │ └── default │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ └── layout.scss │ │ │ ├── plugin │ │ │ │ ├── artefact │ │ │ │ │ └── _resume.scss │ │ │ │ ├── blocktype │ │ │ │ │ ├── _externalfeed.scss │ │ │ │ │ ├── _externalvideo.scss │ │ │ │ │ ├── _internalmedia.scss │ │ │ │ │ ├── _openbadgedisplayer.scss │ │ │ │ │ └── _verification.scss │ │ │ │ └── module │ │ │ │ │ └── lti_advantage │ │ │ │ │ └── _deeplinkportfoliolist.scss │ │ │ ├── style.scss │ │ │ ├── tinymce.scss │ │ │ ├── typography │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _typography.scss │ │ │ └── utilities │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _classes.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── _theme-variables.scss │ │ ├── templates │ │ │ ├── account │ │ │ │ ├── activity │ │ │ │ │ ├── accessemail.tpl │ │ │ │ │ ├── accessinternal.tpl │ │ │ │ │ ├── accessrevokeemail.tpl │ │ │ │ │ ├── accessrevokeemailhtml.tpl │ │ │ │ │ ├── accessrevokeinternal.tpl │ │ │ │ │ ├── activitylist.tpl │ │ │ │ │ └── index.tpl │ │ │ │ ├── apps.tpl │ │ │ │ ├── cancelrequest.tpl │ │ │ │ ├── delete.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── institutions.tpl │ │ │ │ ├── migrateinstitution.tpl │ │ │ │ ├── migrateinstitutionconfirm.tpl │ │ │ │ ├── resendnotification.tpl │ │ │ │ └── userprivacy.tpl │ │ │ ├── admin │ │ │ │ ├── assessmentstats.tpl │ │ │ │ ├── comparisonstats.tpl │ │ │ │ ├── contentstats.tpl │ │ │ │ ├── extensions │ │ │ │ │ ├── cleanurls.tpl │ │ │ │ │ ├── embeddedurls.tpl │ │ │ │ │ ├── filters.tpl │ │ │ │ │ ├── iframesites.tpl │ │ │ │ │ ├── pluginconfig.tpl │ │ │ │ │ ├── plugins.tpl │ │ │ │ │ └── pluginstypes.tpl │ │ │ │ ├── groups │ │ │ │ │ ├── archives.tpl │ │ │ │ │ ├── csvupdatemessage.tpl │ │ │ │ │ ├── groupcategories.tpl │ │ │ │ │ ├── groups.tpl │ │ │ │ │ ├── groupsettings.tpl │ │ │ │ │ ├── groupsresults.tpl │ │ │ │ │ ├── leap2acontentcolumn.tpl │ │ │ │ │ ├── manage.tpl │ │ │ │ │ ├── memberscsvupdatemessage.tpl │ │ │ │ │ ├── releaseselectcolumn.tpl │ │ │ │ │ ├── releasetitlecolumn.tpl │ │ │ │ │ ├── submittedtocontentcolumn.tpl │ │ │ │ │ └── uploadcsv.tpl │ │ │ │ ├── groupstats.tpl │ │ │ │ ├── groupstatssummary.tpl │ │ │ │ ├── historicalstats.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── installgpl.tpl │ │ │ │ ├── institutioncurrentverifiersstatssummary.tpl │ │ │ │ ├── institutionuserstatssummary.tpl │ │ │ │ ├── institutionverifierloadsummary.tpl │ │ │ │ ├── institutionverifierstatssummary.tpl │ │ │ │ ├── institutionviewstatssummary.tpl │ │ │ │ ├── objectionablestats.tpl │ │ │ │ ├── registersite.tpl │ │ │ │ ├── site │ │ │ │ │ ├── cookieconsent.tpl │ │ │ │ │ ├── langfilecolumn.tpl │ │ │ │ │ ├── langpacks.tpl │ │ │ │ │ ├── langselectcolumn.tpl │ │ │ │ │ ├── license-edit.tpl │ │ │ │ │ ├── licenses.tpl │ │ │ │ │ ├── menu.tpl │ │ │ │ │ ├── networking.tpl │ │ │ │ │ ├── options.tpl │ │ │ │ │ ├── pages.tpl │ │ │ │ │ ├── privacy.tpl │ │ │ │ │ ├── privacytable.tpl │ │ │ │ │ └── registrationdata.tpl │ │ │ │ ├── upgrade.tpl │ │ │ │ ├── upgradefooter.tpl │ │ │ │ ├── userloginsummary.tpl │ │ │ │ ├── users │ │ │ │ │ ├── accesslistitem.tpl │ │ │ │ │ ├── accesslists.tpl │ │ │ │ │ ├── actiondeletion.tpl │ │ │ │ │ ├── actionregistration.tpl │ │ │ │ │ ├── add.tpl │ │ │ │ │ ├── admin.tpl │ │ │ │ │ ├── bulk.tpl │ │ │ │ │ ├── bulkdownload.tpl │ │ │ │ │ ├── bulkexport.tpl │ │ │ │ │ ├── bulkimport.tpl │ │ │ │ │ ├── changeuser.tpl │ │ │ │ │ ├── collaborationstats.tpl │ │ │ │ │ ├── completionverificationstats.tpl │ │ │ │ │ ├── csvupdatemessage.tpl │ │ │ │ │ ├── edit.tpl │ │ │ │ │ ├── exportqueue.tpl │ │ │ │ │ ├── institutionadmins.tpl │ │ │ │ │ ├── institutionprivacy.tpl │ │ │ │ │ ├── institutions.tpl │ │ │ │ │ ├── institutionsresults.tpl │ │ │ │ │ ├── institutionstaff.tpl │ │ │ │ │ ├── institutionsupportadmin.tpl │ │ │ │ │ ├── institutiontags.tpl │ │ │ │ │ ├── institutiontagsactions.tpl │ │ │ │ │ ├── institutionusers.tpl │ │ │ │ │ ├── loginaslog.tpl │ │ │ │ │ ├── noinstitutions.tpl │ │ │ │ │ ├── noinstitutionsstats.tpl │ │ │ │ │ ├── notifications.tpl │ │ │ │ │ ├── pendingdeletionlist.tpl │ │ │ │ │ ├── pendingdeletions.tpl │ │ │ │ │ ├── pendingregistrations.tpl │ │ │ │ │ ├── pendinguserslist.tpl │ │ │ │ │ ├── portfolioswithverifiersstats.tpl │ │ │ │ │ ├── progressbar.tpl │ │ │ │ │ ├── search.tpl │ │ │ │ │ ├── searchcountrycolumn.tpl │ │ │ │ │ ├── searchemailcolumn.tpl │ │ │ │ │ ├── searchexportcontentcolumn.tpl │ │ │ │ │ ├── searchexportstatuscolumn.tpl │ │ │ │ │ ├── searchfirstnamecolumn.tpl │ │ │ │ │ ├── searchfirstnameheader.tpl │ │ │ │ │ ├── searchiconcolumn.tpl │ │ │ │ │ ├── searchinstitutioncolumn.tpl │ │ │ │ │ ├── searchlastnamecolumn.tpl │ │ │ │ │ ├── searchlastnameheader.tpl │ │ │ │ │ ├── searchmasqueradecolumn.tpl │ │ │ │ │ ├── searchselectcolumn.tpl │ │ │ │ │ ├── searchselectcolumnexport.tpl │ │ │ │ │ ├── searchselectcolumnexportdelete.tpl │ │ │ │ │ ├── searchusernamecolumn.tpl │ │ │ │ │ ├── searchuserroles.tpl │ │ │ │ │ ├── smartevidencereport.tpl │ │ │ │ │ ├── smartevidencereportaccessitem.tpl │ │ │ │ │ ├── staff.tpl │ │ │ │ │ ├── statistics.tpl │ │ │ │ │ ├── statisticsuseragreements.tpl │ │ │ │ │ ├── stats.tpl │ │ │ │ │ ├── statsconfig.tpl │ │ │ │ │ ├── statsheading.tpl │ │ │ │ │ ├── suspended.tpl │ │ │ │ │ ├── suspendresults.tpl │ │ │ │ │ ├── uploadcsv.tpl │ │ │ │ │ ├── useractivitystats.tpl │ │ │ │ │ ├── useragreementstats.tpl │ │ │ │ │ ├── userdetailsstats.tpl │ │ │ │ │ ├── userlist.tpl │ │ │ │ │ └── verifiersummarystats.tpl │ │ │ │ ├── userstats.tpl │ │ │ │ ├── userstatssummary.tpl │ │ │ │ ├── viewstats.tpl │ │ │ │ └── viewstatssummary.tpl │ │ │ ├── artefact.tpl │ │ │ ├── artefact │ │ │ │ ├── activitytype.tpl │ │ │ │ └── artefactcommentsview.tpl │ │ │ ├── author.tpl │ │ │ ├── cleanedhtml.tpl │ │ │ ├── collection │ │ │ │ ├── access.tpl │ │ │ │ ├── actions.tpl │ │ │ │ ├── activitytablerow.tpl │ │ │ │ ├── collectionresults.tpl │ │ │ │ ├── delete.tpl │ │ │ │ ├── edit.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── manageoutcomes.tpl │ │ │ │ ├── outcomesoverview.tpl │ │ │ │ ├── outcomesoverviewmodals.tpl │ │ │ │ ├── outcometypehelp.tpl │ │ │ │ ├── progresscompletion.tpl │ │ │ │ ├── viewcontent.tpl │ │ │ │ ├── views.json.tpl │ │ │ │ └── views.tpl │ │ │ ├── collectionnav.tpl │ │ │ ├── customcss.tpl │ │ │ ├── edittags.tpl │ │ │ ├── error.tpl │ │ │ ├── export │ │ │ │ └── export.tpl │ │ │ ├── footer.tpl │ │ │ ├── forgotpass.tpl │ │ │ ├── form.tpl │ │ │ ├── form │ │ │ │ ├── artefactchooser-element.tpl │ │ │ │ ├── artefactchooser.tpl │ │ │ │ ├── authlist.tpl │ │ │ │ ├── autocomplete.tpl │ │ │ │ ├── checkbox.tpl │ │ │ │ ├── emaillist.tpl │ │ │ │ ├── files.tpl │ │ │ │ ├── multitext.tpl │ │ │ │ ├── ratings.tpl │ │ │ │ ├── switchbox.tpl │ │ │ │ ├── userlist.tpl │ │ │ │ └── viewacl.tpl │ │ │ ├── group │ │ │ │ ├── archives.tpl │ │ │ │ ├── changerole.tpl │ │ │ │ ├── delete.tpl │ │ │ │ ├── editgroupmembership.tpl │ │ │ │ ├── form.tpl │ │ │ │ ├── group.tpl │ │ │ │ ├── groupdata.tpl │ │ │ │ ├── grouplabelmodal.tpl │ │ │ │ ├── groupuseractions.tpl │ │ │ │ ├── groupuserstatus.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── info.tpl │ │ │ │ ├── interactions.tpl │ │ │ │ ├── invite.tpl │ │ │ │ ├── leave.tpl │ │ │ │ ├── members.tpl │ │ │ │ ├── membersearchresults.tpl │ │ │ │ ├── mygroupresults.tpl │ │ │ │ ├── participationgroupviews.tpl │ │ │ │ ├── participationsharedviews.tpl │ │ │ │ ├── report.tpl │ │ │ │ ├── requestjoin.tpl │ │ │ │ ├── topicrows.tpl │ │ │ │ ├── topics.tpl │ │ │ │ └── view.tpl │ │ │ ├── header.tpl │ │ │ ├── header │ │ │ │ ├── block-comments-details-header.tpl │ │ │ │ ├── block-header.tpl │ │ │ │ ├── block-quickedit-header.tpl │ │ │ │ ├── head.tpl │ │ │ │ ├── language.tpl │ │ │ │ ├── matrixheader.tpl │ │ │ │ ├── navigation.tpl │ │ │ │ ├── pageactions.tpl │ │ │ │ ├── pageheader.tpl │ │ │ │ ├── profileactions.tpl │ │ │ │ ├── profileheader.tpl │ │ │ │ └── topright.tpl │ │ │ ├── homeinfo.tpl │ │ │ ├── import │ │ │ │ └── views.tpl │ │ │ ├── index.tpl │ │ │ ├── inpagenav.tpl │ │ │ ├── institution │ │ │ │ ├── staff.tpl │ │ │ │ ├── staffadmin.tpl │ │ │ │ └── stafflist.tpl │ │ │ ├── interaction │ │ │ │ ├── delete.tpl │ │ │ │ └── edit.tpl │ │ │ ├── login.tpl │ │ │ ├── map │ │ │ │ └── componentmap.tpl │ │ │ ├── message.tpl │ │ │ ├── misc │ │ │ │ └── behatvariables.tpl │ │ │ ├── modal-details.tpl │ │ │ ├── objectionreview.tpl │ │ │ ├── pagemodal.tpl │ │ │ ├── performancefooter.tpl │ │ │ ├── portfoliosearchresults.tpl │ │ │ ├── previewcollectionnav.tpl │ │ │ ├── privacy_modal.tpl │ │ │ ├── privacy_panel_begin.tpl │ │ │ ├── privacy_panel_end.tpl │ │ │ ├── progress_meter.tpl │ │ │ ├── register.tpl │ │ │ ├── relatedtags.tpl │ │ │ ├── requiredfields.tpl │ │ │ ├── searchresulttable.tpl │ │ │ ├── searchresulttablebuttons.tpl │ │ │ ├── selfsearch.tpl │ │ │ ├── sidebar.tpl │ │ │ ├── sideblocks │ │ │ │ ├── friendscontrol.tpl │ │ │ │ ├── generic.tpl │ │ │ │ ├── groupinteractions.tpl │ │ │ │ ├── groupquota.tpl │ │ │ │ ├── linksandresources.tpl │ │ │ │ ├── login.tpl │ │ │ │ ├── onlineusers.tpl │ │ │ │ ├── profile.tpl │ │ │ │ ├── progressbar.tpl │ │ │ │ ├── quota.tpl │ │ │ │ ├── selfsearch.tpl │ │ │ │ ├── ssopeers.tpl │ │ │ │ └── tags.tpl │ │ │ ├── sitepage.tpl │ │ │ ├── sitepagesections.tpl │ │ │ ├── skin │ │ │ │ ├── delete.tpl │ │ │ │ ├── design.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── sitefontresults.tpl │ │ │ │ ├── sitefonts.tpl │ │ │ │ ├── specimen.tpl │ │ │ │ └── style.tpl │ │ │ ├── strftimedatetime.tpl │ │ │ ├── styleguide.tpl │ │ │ ├── taglist.tpl │ │ │ ├── tags.tpl │ │ │ ├── unsubscribe.tpl │ │ │ ├── user │ │ │ │ ├── dashboard.tpl │ │ │ │ ├── denyrequest.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── online.tpl │ │ │ │ ├── onlineuserresults.tpl │ │ │ │ ├── removefriend.tpl │ │ │ │ ├── requestfriendship.tpl │ │ │ │ ├── sendmessage.tpl │ │ │ │ ├── simpleuser.tpl │ │ │ │ ├── userfind.tpl │ │ │ │ ├── userresults.tpl │ │ │ │ └── view.tpl │ │ │ └── view │ │ │ │ ├── access.tpl │ │ │ │ ├── accesslistrow.tpl │ │ │ │ ├── accessurl.tpl │ │ │ │ ├── activitysupport.tpl │ │ │ │ ├── activitysupportdesc.tpl │ │ │ │ ├── activitysupporteditedby.tpl │ │ │ │ ├── activitysupportsubmitbutton.tpl │ │ │ │ ├── blocks.tpl │ │ │ │ ├── blocktypecontainerediting.tpl │ │ │ │ ├── blocktypecontainerviewing.tpl │ │ │ │ ├── blocktypelist.tpl │ │ │ │ ├── changetheme.tpl │ │ │ │ ├── choosetemplate.tpl │ │ │ │ ├── columnediting.tpl │ │ │ │ ├── columnviewing.tpl │ │ │ │ ├── contenteditor.tpl │ │ │ │ ├── delete.tpl │ │ │ │ ├── descriptionblock.tpl │ │ │ │ ├── editlayout.tpl │ │ │ │ ├── editviewpageactions.tpl │ │ │ │ ├── gridcell.tpl │ │ │ │ ├── imagebrowser.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── indexresults.tpl │ │ │ │ ├── retractablejs.tpl │ │ │ │ ├── rowediting.tpl │ │ │ │ ├── rowviewing.tpl │ │ │ │ ├── share.tpl │ │ │ │ ├── sharedviewrows.tpl │ │ │ │ ├── sharedviews.tpl │ │ │ │ ├── skin.tpl │ │ │ │ ├── submit.tpl │ │ │ │ ├── templatesearchresults.tpl │ │ │ │ ├── translatewarning.tpl │ │ │ │ ├── urls.tpl │ │ │ │ ├── verifyform.tpl │ │ │ │ ├── verifyform_export.tpl │ │ │ │ ├── versioning.tpl │ │ │ │ ├── versionresults.tpl │ │ │ │ ├── view.tpl │ │ │ │ ├── viewcontent.tpl │ │ │ │ ├── viewmenu.tpl │ │ │ │ └── viewmenuartefact.tpl │ │ └── themeconfig.php │ ├── styleguide.php │ ├── subthemestarter │ │ ├── .gitignore │ │ ├── sass │ │ │ ├── _custom.scss │ │ │ ├── style.scss │ │ │ └── utilities │ │ │ │ └── _theme-variables.scss │ │ └── themeconfig.php │ └── views-js.css ├── thumb.php ├── user │ ├── denyrequest.php │ ├── index.html │ ├── index.php │ ├── online.json.php │ ├── online.php │ ├── removefriend.php │ ├── requestfriendship.php │ ├── sendmessage.php │ ├── userdetail.json.php │ └── view.php ├── view │ ├── access.json.php │ ├── access.php │ ├── accessurl.php │ ├── activitysupport.json.php │ ├── artefact.php │ ├── artefactchooser.json.php │ ├── blocks.json.php │ ├── blocks.php │ ├── choosetemplate.php │ ├── copy.php │ ├── createversion.php │ ├── delete.php │ ├── download.php │ ├── editlayout.php │ ├── grid.json.php │ ├── groupviews.php │ ├── index.php │ ├── institutionshare.php │ ├── institutionviews.php │ ├── instructions.json.php │ ├── share.php │ ├── sharedviews.php │ ├── skins.json.php │ ├── submit.php │ ├── templatesearch.json.php │ ├── togglewatchlist.json.php │ ├── unsubscribe.php │ ├── urls.php │ ├── versioning.json.php │ ├── versioning.php │ ├── view.php │ ├── viewblocks.json.php │ ├── viewcontent.json.php │ ├── viewdetailsfilter.json.php │ └── viewtags.json.php └── webservice │ ├── admin │ ├── addconnection.php │ ├── connections.php │ ├── functions.json.php │ ├── index.php │ ├── logsearch.json.php │ ├── oauthv1sregister.php │ ├── reload_services.php │ ├── service.json.php │ ├── serviceconfig.php │ ├── tokenconfig.php │ ├── userconfig.php │ ├── users.json.php │ ├── webservicelogs.php │ └── webservicessearchlib.php │ ├── apptokens.php │ ├── download.php │ ├── functions │ ├── mahara_blog_external.php │ ├── mahara_group_external.php │ ├── mahara_institution_external.php │ ├── mahara_user_external.php │ └── mahara_view_external.php │ ├── index.html │ ├── lib.php │ ├── libs │ ├── net.php │ └── oauth-php │ │ ├── OAuthDiscovery.php │ │ ├── OAuthException2.php │ │ ├── OAuthRequest.php │ │ ├── OAuthRequestLogger.php │ │ ├── OAuthRequestSigner.php │ │ ├── OAuthRequestVerifier.php │ │ ├── OAuthRequester.php │ │ ├── OAuthServer.php │ │ ├── OAuthSession.php │ │ ├── OAuthStore.php │ │ ├── README.Mahara │ │ ├── body │ │ ├── OAuthBodyContentDisposition.php │ │ └── OAuthBodyMultipartFormdata.php │ │ ├── discovery │ │ ├── xrds_parse.php │ │ └── xrds_parse.txt │ │ ├── session │ │ ├── OAuthSessionAbstract.class.php │ │ └── OAuthSessionSESSION.php │ │ ├── signature_method │ │ ├── OAuthSignatureMethod.class.php │ │ ├── OAuthSignatureMethod_HMAC_SHA1.php │ │ ├── OAuthSignatureMethod_MD5.php │ │ ├── OAuthSignatureMethod_PLAINTEXT.php │ │ └── OAuthSignatureMethod_RSA_SHA1.php │ │ └── store │ │ ├── OAuthStore2Leg.php │ │ ├── OAuthStoreAbstract.class.php │ │ ├── OAuthStoreMahara.php │ │ └── OAuthStoreSession.php │ ├── locallib.php │ ├── mahara_url.php │ ├── oauthv1.php │ ├── rest │ ├── lib.php │ ├── locallib.php │ └── server.php │ ├── services.php │ ├── services.xrds.php │ ├── soap │ ├── classes │ │ └── wsdl.php │ ├── lib.php │ ├── locallib.php │ └── server.php │ ├── testclient.php │ ├── tests │ └── phpunit │ │ ├── README.md │ │ └── WebserviceslibTest.php │ ├── wsdoc.php │ └── xmlrpc │ ├── lib.php │ ├── locallib.php │ └── server.php ├── js_patches ├── JS_PATCHES_README.md ├── fa_customisations.patch └── videojs_customisations.patch ├── package.json ├── patches ├── README.md └── htdocs │ ├── bootstrap+5.0.2.patch │ └── tinymce+5.10.7.patch ├── phpstan.neon ├── phpunit.xml └── test ├── README ├── WHITELIST ├── behat ├── chromedriver-2.38-linux64 ├── features │ ├── elasticsearch7 │ │ ├── elasticsearch7.feature │ │ ├── es7_access_changes.feature │ │ ├── es7_blocktypes_search.feature │ │ ├── es7_collaboration_report.feature │ │ ├── es7_delete_page.feature │ │ ├── es7_edit_page_title.feature │ │ ├── es7_files_search.feature │ │ ├── es7_group_search.feature │ │ ├── es7_groups_report.feature │ │ ├── es7_journals_plans_tags_search.feature │ │ ├── es7_new_page.feature │ │ ├── es7_pages_collections_blocks_search.feature │ │ ├── es7_resume_search.feature │ │ └── es7_tabs_filter_sort_owner_pagination.feature │ ├── first_check │ │ └── test.feature │ ├── manual_checks │ │ └── built_in_themes.feature │ ├── outcomes │ │ ├── full_test.feature │ │ ├── institution_configuration.feature │ │ └── permissions.feature │ ├── security │ │ ├── groups_field_injection.feature │ │ ├── inject_sql_login.feature │ │ ├── search_box_sql.feature │ │ └── suckypasswords_array_increase.feature │ ├── settings │ │ ├── access_list_string.feature │ │ ├── add_institution.feature │ │ ├── add_users_new.feature │ │ ├── admin_home.feature │ │ ├── admin_message.feature │ │ ├── anonymous_view.feature │ │ ├── change_account_settings.feature │ │ ├── cookie_consent_configuration.feature │ │ ├── country.feature │ │ ├── custom_landing_page.feature │ │ ├── elasticsearch.feature │ │ ├── enable_plugins.feature │ │ ├── footer_settings.feature │ │ ├── image_on_static_page.feature │ │ ├── institution_configuration.feature │ │ ├── institution_tags.feature │ │ ├── legal_statement.feature │ │ ├── links_and_resources.feature │ │ ├── loginattempts.feature │ │ ├── notification_quota.feature │ │ ├── notification_settings.feature │ │ ├── profile_completion.feature │ │ ├── register_configuration.feature │ │ ├── register_data.feature │ │ ├── required_plugins.feature │ │ ├── required_social_media.feature │ │ ├── retractableblocks.feature │ │ ├── site_option_configuration.feature │ │ ├── user_change_password.feature │ │ ├── user_search.feature │ │ ├── user_self_delete.feature │ │ └── user_themes.feature │ ├── site_content │ │ ├── activity_type_messages.feature │ │ ├── configure_networking_page.feature │ │ ├── contact_us.feature │ │ ├── dashboard.feature │ │ ├── expand_fields.feature │ │ ├── group_categories.feature │ │ ├── group_copy_existing.feature │ │ ├── group_view_block.feature │ │ ├── help_icon.feature │ │ ├── hide_group_members.feature │ │ ├── institution_limit_group.feature │ │ ├── institution_statistics.feature │ │ ├── menu_navigation.feature │ │ ├── page_number_interval_sharedwithme.feature │ │ ├── random_clicking.feature │ │ ├── registered_users.feature │ │ ├── resize_images_string.feature │ │ ├── shared_with_group.feature │ │ ├── switches_edit_forum.feature │ │ ├── switches_edit_group.feature │ │ └── user_search_box.feature │ ├── site_features │ │ ├── annotation_and_smartevidence.feature │ │ ├── annotation_block.feature │ │ ├── collection_export_bulk.feature │ │ ├── externalfeed.feature │ │ ├── install_framework.feature │ │ ├── institution_smartevidence.feature │ │ ├── isolated_institutions.feature │ │ ├── license_block.feature │ │ ├── max_item_limit_sharedwithme.feature │ │ ├── moderate_forum_posts.feature │ │ ├── monitor.feature │ │ ├── navigation_block.feature │ │ ├── online_users.feature │ │ ├── openbadges.feature │ │ ├── recaptcha.feature │ │ ├── recent_forum_posts.feature │ │ ├── share_profile_public.feature │ │ ├── smart_evidence_editor.feature │ │ ├── smart_evidence_workflow.feature │ │ ├── strict_privacy.feature │ │ ├── tinymce_mathslate_plugin.feature │ │ ├── unsubscribe_watchlist.feature │ │ ├── viewing_watchlist.feature │ │ └── webservices.feature │ ├── social │ │ ├── add_delete_comments.feature │ │ ├── create_and_delete_groups.feature │ │ ├── delete_page_collection_group.feature │ │ ├── displaying_groups_on_page.feature │ │ ├── edit_group.feature │ │ ├── edit_group_membership.feature │ │ ├── find_friend.feature │ │ ├── friends.feature │ │ ├── group.feature │ │ ├── group_feedback_comment_visible.feature │ │ ├── group_members_sortedby.feature │ │ ├── group_pages.feature │ │ ├── group_private.feature │ │ ├── inbox_direct_link.feature │ │ ├── inbox_link.feature │ │ ├── institution.feature │ │ ├── make_comment_public.feature │ │ ├── moderate_group_comment.feature │ │ ├── objectionable_content.feature │ │ ├── participation_report.feature │ │ ├── portfolios_on_people_page.feature │ │ ├── send_message.feature │ │ ├── send_multiple_messages.feature │ │ ├── send_now_button.feature │ │ ├── share_comments.feature │ │ ├── share_page.feature │ │ ├── sharedwithme.feature │ │ ├── social_media_buttons.feature │ │ ├── sort_threaded_comments.feature │ │ ├── submission_to_group.feature │ │ └── threaded_comments.feature │ └── user_content │ │ ├── add_blogs.feature │ │ ├── add_pdf.feature │ │ ├── add_tags.feature │ │ ├── adding_journals_to_institution.feature │ │ ├── adding_pages_collection.feature │ │ ├── comments_details_modal.feature │ │ ├── copy_note_content.feature │ │ ├── copy_page_and_collection.feature │ │ ├── copy_taggedposts.feature │ │ ├── create_delete_page.feature │ │ ├── create_delete_share_skin.feature │ │ ├── deleted_wall_posts.feature │ │ ├── disable_external_resources.feature │ │ ├── download_files_block.feature │ │ ├── draft_journal.feature │ │ ├── edit_admin_profile.feature │ │ ├── edit_default_portfolio_page.feature │ │ ├── edit_default_template_pages.feature │ │ ├── edit_journal.feature │ │ ├── edit_page.feature │ │ ├── embedded_media_block.feature │ │ ├── file_edit.feature │ │ ├── image_block.feature │ │ ├── image_gallery.feature │ │ ├── import_export_skin.feature │ │ ├── journal_configuration.feature │ │ ├── journals.feature │ │ ├── moving_pages_between_groups.feature │ │ ├── myviews.feature │ │ ├── nested_folders_images.feature │ │ ├── newviews.feature │ │ ├── note_block.feature │ │ ├── partial_example.feature │ │ ├── peer_assessment.feature │ │ ├── placeholder.feature │ │ ├── plan_add_tasks.feature │ │ ├── profile_block.feature │ │ ├── resume_page.feature │ │ ├── search_users_by_share_pages.feature │ │ ├── secret_url.feature │ │ ├── site_page_with_template_blocks.feature │ │ ├── some_html.feature │ │ ├── text_block.feature │ │ ├── timeline.feature │ │ └── wall.feature ├── mahara_behat.sh ├── mahara_behat_php81.sh └── upload_files │ ├── 20-10_2ExportedSkins.xml │ ├── 20users_update.csv │ ├── 3images.zip │ ├── 50users_new.csv │ ├── 7usersnew-correctdates.csv │ ├── 7usersnew-errors.csv │ ├── Image1.jpg │ ├── Image2.png │ ├── Image3.png │ ├── UserCSV.csv │ ├── example.matrix │ ├── groupmembers.csv │ ├── groups.csv │ ├── leap2a.xml │ ├── mahara.mp3 │ ├── mahara_about.pdf │ ├── mahara_test_accounts_1000users.csv │ ├── mahara_test_groups_1000groups.csv │ ├── mahara_test_update_groups_1000users.csv │ ├── test_html.html │ ├── testvid1.3gp │ ├── testvid2.mkv │ ├── testvid3.mp4 │ └── users.csv ├── cleanscript.sh ├── closebraces.sed ├── coding-standard-check.pl ├── crontest.php ├── gnuopenbraces.sed ├── inlineopenbraces.sed ├── selenium └── server │ └── selenium-server.jar └── versioncheck.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/.phan/config.php -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/COPYING -------------------------------------------------------------------------------- /CUSTOMISATIONS-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/CUSTOMISATIONS-example.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/README.md -------------------------------------------------------------------------------- /append_composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/append_composer.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/composer.lock -------------------------------------------------------------------------------- /composer_patches/htmlpurifier.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/composer_patches/htmlpurifier.patch -------------------------------------------------------------------------------- /dev/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /dev/elasticsearch7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/README.md -------------------------------------------------------------------------------- /dev/elasticsearch7/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/TODO.md -------------------------------------------------------------------------------- /dev/elasticsearch7/create-certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/create-certs.yml -------------------------------------------------------------------------------- /dev/elasticsearch7/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/docker-compose.yml -------------------------------------------------------------------------------- /dev/elasticsearch7/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/example.env -------------------------------------------------------------------------------- /dev/elasticsearch7/instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/elasticsearch7/instances.yml -------------------------------------------------------------------------------- /dev/happy-banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/happy-banner.txt -------------------------------------------------------------------------------- /dev/mahara_custom_phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/mahara_custom_phpcs.xml -------------------------------------------------------------------------------- /dev/sad-banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/dev/sad-banner.txt -------------------------------------------------------------------------------- /docker/.env-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/.env-dist -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-base-bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-base-bionic -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-base-focal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-base-focal -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-base-impish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-base-impish -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-base-jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-base-jammy -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-builder -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-web-bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-web-bionic -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-web-focal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-web-focal -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-web-impish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-web-impish -------------------------------------------------------------------------------- /docker/Dockerfile.mahara-web-jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/Dockerfile.mahara-web-jammy -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/chromium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/chromium.json -------------------------------------------------------------------------------- /docker/docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/docker-compose.dev.yaml -------------------------------------------------------------------------------- /docker/docker-compose.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/docker-compose.prod.yaml -------------------------------------------------------------------------------- /docker/docker-compose.shared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/docker-compose.shared.yaml -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/make.sh -------------------------------------------------------------------------------- /docker/proxy/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/proxy/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/test-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/test-db.sh -------------------------------------------------------------------------------- /docker/test-mahara.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/docker/test-mahara.sh -------------------------------------------------------------------------------- /external/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/external/composer.json -------------------------------------------------------------------------------- /external/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/external/composer.lock -------------------------------------------------------------------------------- /external/composer.patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/external/composer.patches.json -------------------------------------------------------------------------------- /external/escaper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/external/escaper.patch -------------------------------------------------------------------------------- /grumphp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/grumphp.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/gulpfile.js -------------------------------------------------------------------------------- /htdocs/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/about.php -------------------------------------------------------------------------------- /htdocs/account/activity/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/activity/index.php -------------------------------------------------------------------------------- /htdocs/account/apps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/apps.php -------------------------------------------------------------------------------- /htdocs/account/cancelrequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/cancelrequest.php -------------------------------------------------------------------------------- /htdocs/account/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/delete.php -------------------------------------------------------------------------------- /htdocs/account/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/index.php -------------------------------------------------------------------------------- /htdocs/account/institutions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/institutions.php -------------------------------------------------------------------------------- /htdocs/account/migrateinstitution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/migrateinstitution.php -------------------------------------------------------------------------------- /htdocs/account/resendnotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/resendnotification.php -------------------------------------------------------------------------------- /htdocs/account/userprivacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/account/userprivacy.php -------------------------------------------------------------------------------- /htdocs/admin/cli/clear_caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/clear_caches.php -------------------------------------------------------------------------------- /htdocs/admin/cli/close_site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/close_site.php -------------------------------------------------------------------------------- /htdocs/admin/cli/es7_fast_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/es7_fast_index.php -------------------------------------------------------------------------------- /htdocs/admin/cli/fast_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/fast_index.php -------------------------------------------------------------------------------- /htdocs/admin/cli/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/install.php -------------------------------------------------------------------------------- /htdocs/admin/cli/reset_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/reset_password.php -------------------------------------------------------------------------------- /htdocs/admin/cli/sync_langpacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/sync_langpacks.php -------------------------------------------------------------------------------- /htdocs/admin/cli/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/cli/upgrade.php -------------------------------------------------------------------------------- /htdocs/admin/extensions/cleanurls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/extensions/cleanurls.php -------------------------------------------------------------------------------- /htdocs/admin/extensions/filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/extensions/filter.php -------------------------------------------------------------------------------- /htdocs/admin/extensions/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/extensions/plugins.php -------------------------------------------------------------------------------- /htdocs/admin/groups/archives.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/archives.json.php -------------------------------------------------------------------------------- /htdocs/admin/groups/archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/archives.php -------------------------------------------------------------------------------- /htdocs/admin/groups/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/delete.php -------------------------------------------------------------------------------- /htdocs/admin/groups/groups.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/groups.json.php -------------------------------------------------------------------------------- /htdocs/admin/groups/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/groups.php -------------------------------------------------------------------------------- /htdocs/admin/groups/manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/manage.php -------------------------------------------------------------------------------- /htdocs/admin/groups/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/settings.php -------------------------------------------------------------------------------- /htdocs/admin/groups/uploadcsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/groups/uploadcsv.php -------------------------------------------------------------------------------- /htdocs/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/index.php -------------------------------------------------------------------------------- /htdocs/admin/registersite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/registersite.php -------------------------------------------------------------------------------- /htdocs/admin/site/cookieconsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/cookieconsent.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/add.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/css.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/delete.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/edit.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/install.php -------------------------------------------------------------------------------- /htdocs/admin/site/font/specimen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/font/specimen.php -------------------------------------------------------------------------------- /htdocs/admin/site/fonts.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/fonts.json.php -------------------------------------------------------------------------------- /htdocs/admin/site/fonts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/fonts.php -------------------------------------------------------------------------------- /htdocs/admin/site/langpacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/langpacks.php -------------------------------------------------------------------------------- /htdocs/admin/site/license-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/license-edit.php -------------------------------------------------------------------------------- /htdocs/admin/site/licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/licenses.php -------------------------------------------------------------------------------- /htdocs/admin/site/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/menu.php -------------------------------------------------------------------------------- /htdocs/admin/site/networking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/networking.php -------------------------------------------------------------------------------- /htdocs/admin/site/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/options.php -------------------------------------------------------------------------------- /htdocs/admin/site/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/pages.php -------------------------------------------------------------------------------- /htdocs/admin/site/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/privacy.php -------------------------------------------------------------------------------- /htdocs/admin/site/shareviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/shareviews.php -------------------------------------------------------------------------------- /htdocs/admin/site/skins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/skins.php -------------------------------------------------------------------------------- /htdocs/admin/site/updatemenu.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/updatemenu.json.php -------------------------------------------------------------------------------- /htdocs/admin/site/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/site/views.php -------------------------------------------------------------------------------- /htdocs/admin/thumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/thumb.php -------------------------------------------------------------------------------- /htdocs/admin/upgrade.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/upgrade.json.php -------------------------------------------------------------------------------- /htdocs/admin/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/upgrade.php -------------------------------------------------------------------------------- /htdocs/admin/users/actiondeletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/actiondeletion.php -------------------------------------------------------------------------------- /htdocs/admin/users/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/add.php -------------------------------------------------------------------------------- /htdocs/admin/users/addauthority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/addauthority.php -------------------------------------------------------------------------------- /htdocs/admin/users/admins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/admins.php -------------------------------------------------------------------------------- /htdocs/admin/users/bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/bulk.php -------------------------------------------------------------------------------- /htdocs/admin/users/bulkexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/bulkexport.php -------------------------------------------------------------------------------- /htdocs/admin/users/bulkimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/bulkimport.php -------------------------------------------------------------------------------- /htdocs/admin/users/changeuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/changeuser.php -------------------------------------------------------------------------------- /htdocs/admin/users/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/edit.php -------------------------------------------------------------------------------- /htdocs/admin/users/exportqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/exportqueue.php -------------------------------------------------------------------------------- /htdocs/admin/users/institutions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/institutions.php -------------------------------------------------------------------------------- /htdocs/admin/users/institutiontags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/institutiontags.php -------------------------------------------------------------------------------- /htdocs/admin/users/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/notifications.php -------------------------------------------------------------------------------- /htdocs/admin/users/progressbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/progressbar.php -------------------------------------------------------------------------------- /htdocs/admin/users/quota.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/quota.json.php -------------------------------------------------------------------------------- /htdocs/admin/users/search.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/search.json.php -------------------------------------------------------------------------------- /htdocs/admin/users/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/search.php -------------------------------------------------------------------------------- /htdocs/admin/users/staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/staff.php -------------------------------------------------------------------------------- /htdocs/admin/users/statistics.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/statistics.json.php -------------------------------------------------------------------------------- /htdocs/admin/users/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/statistics.php -------------------------------------------------------------------------------- /htdocs/admin/users/suspended.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/suspended.json.php -------------------------------------------------------------------------------- /htdocs/admin/users/suspended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/suspended.php -------------------------------------------------------------------------------- /htdocs/admin/users/uploadcsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/admin/users/uploadcsv.php -------------------------------------------------------------------------------- /htdocs/api/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/api/mobile/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/mobile/lib.php -------------------------------------------------------------------------------- /htdocs/api/mobile/sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/mobile/sync.php -------------------------------------------------------------------------------- /htdocs/api/mobile/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/mobile/upload.php -------------------------------------------------------------------------------- /htdocs/api/xmlrpc/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/xmlrpc/client.php -------------------------------------------------------------------------------- /htdocs/api/xmlrpc/dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/xmlrpc/dispatcher.php -------------------------------------------------------------------------------- /htdocs/api/xmlrpc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/api/xmlrpc/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/xmlrpc/lib.php -------------------------------------------------------------------------------- /htdocs/api/xmlrpc/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/api/xmlrpc/server.php -------------------------------------------------------------------------------- /htdocs/artefact/annotation/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/annotation/edit.php -------------------------------------------------------------------------------- /htdocs/artefact/annotation/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/annotation/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/annotation/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/annotation/version.php -------------------------------------------------------------------------------- /htdocs/artefact/artefact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/artefact.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/atom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/atom.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/artefact/blog/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/db/install.xml -------------------------------------------------------------------------------- /htdocs/artefact/blog/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/index.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/index.json.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/index.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/new/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/new/index.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/post.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/posts.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/posts.json.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/version.php -------------------------------------------------------------------------------- /htdocs/artefact/blog/view/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/blog/view/index.php -------------------------------------------------------------------------------- /htdocs/artefact/checkpoint/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/checkpoint/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/checkpoint/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/checkpoint/version.php -------------------------------------------------------------------------------- /htdocs/artefact/comment/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/comment/db/install.xml -------------------------------------------------------------------------------- /htdocs/artefact/comment/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/comment/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/artefact/comment/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/comment/edit.php -------------------------------------------------------------------------------- /htdocs/artefact/comment/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/comment/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/comment/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/comment/version.php -------------------------------------------------------------------------------- /htdocs/artefact/extratables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/extratables.xml -------------------------------------------------------------------------------- /htdocs/artefact/file/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/artefact/file/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/db/install.xml -------------------------------------------------------------------------------- /htdocs/artefact/file/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/artefact/file/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/download.php -------------------------------------------------------------------------------- /htdocs/artefact/file/extract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/extract.php -------------------------------------------------------------------------------- /htdocs/artefact/file/filetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/filetypes.xml -------------------------------------------------------------------------------- /htdocs/artefact/file/groupfiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/groupfiles.php -------------------------------------------------------------------------------- /htdocs/artefact/file/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/index.php -------------------------------------------------------------------------------- /htdocs/artefact/file/js/filebrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/js/filebrowser.js -------------------------------------------------------------------------------- /htdocs/artefact/file/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/file/profileicons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/profileicons.php -------------------------------------------------------------------------------- /htdocs/artefact/file/sitefiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/sitefiles.php -------------------------------------------------------------------------------- /htdocs/artefact/file/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/file/version.php -------------------------------------------------------------------------------- /htdocs/artefact/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/artefact/internal/editnote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/editnote.php -------------------------------------------------------------------------------- /htdocs/artefact/internal/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/index.php -------------------------------------------------------------------------------- /htdocs/artefact/internal/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/internal/notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/notes.php -------------------------------------------------------------------------------- /htdocs/artefact/internal/validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/validate.php -------------------------------------------------------------------------------- /htdocs/artefact/internal/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/internal/version.php -------------------------------------------------------------------------------- /htdocs/artefact/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/peerassessment/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/peerassessment/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/db/install.xml -------------------------------------------------------------------------------- /htdocs/artefact/plans/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/index.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/js/planedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/js/planedit.js -------------------------------------------------------------------------------- /htdocs/artefact/plans/js/plannew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/js/plannew.js -------------------------------------------------------------------------------- /htdocs/artefact/plans/js/planview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/js/planview.js -------------------------------------------------------------------------------- /htdocs/artefact/plans/js/taskedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/js/taskedit.js -------------------------------------------------------------------------------- /htdocs/artefact/plans/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/plan/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/plan/delete.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/plan/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/plan/edit.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/plan/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/plan/new.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/plan/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/plan/view.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/plans.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/plans.json.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/task/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/task/delete.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/task/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/task/edit.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/task/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/task/new.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/version.php -------------------------------------------------------------------------------- /htdocs/artefact/plans/view/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/plans/view/submit.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/db/install.xml -------------------------------------------------------------------------------- /htdocs/artefact/resume/db/temp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/db/temp.xml -------------------------------------------------------------------------------- /htdocs/artefact/resume/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/education.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/education.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/employment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/employment.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/index.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/interests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/interests.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/lib.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/license.php -------------------------------------------------------------------------------- /htdocs/artefact/resume/resume.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/resume.css -------------------------------------------------------------------------------- /htdocs/artefact/resume/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/artefact/resume/version.php -------------------------------------------------------------------------------- /htdocs/auth/imap/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/imap/lib.php -------------------------------------------------------------------------------- /htdocs/auth/imap/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/imap/version.php -------------------------------------------------------------------------------- /htdocs/auth/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/auth/internal/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/internal/lib.php -------------------------------------------------------------------------------- /htdocs/auth/internal/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/internal/version.php -------------------------------------------------------------------------------- /htdocs/auth/ldap/cli/sync_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/ldap/cli/sync_groups.php -------------------------------------------------------------------------------- /htdocs/auth/ldap/cli/sync_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/ldap/cli/sync_users.php -------------------------------------------------------------------------------- /htdocs/auth/ldap/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/ldap/lib.php -------------------------------------------------------------------------------- /htdocs/auth/ldap/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/ldap/version.php -------------------------------------------------------------------------------- /htdocs/auth/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/lib.php -------------------------------------------------------------------------------- /htdocs/auth/none/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/none/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/auth/none/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/none/lib.php -------------------------------------------------------------------------------- /htdocs/auth/none/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/none/version.php -------------------------------------------------------------------------------- /htdocs/auth/plugintables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/plugintables.xml -------------------------------------------------------------------------------- /htdocs/auth/saml/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/config/config.php -------------------------------------------------------------------------------- /htdocs/auth/saml/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/auth/saml/extlib/_autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/extlib/_autoload.php -------------------------------------------------------------------------------- /htdocs/auth/saml/idpdelete.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/idpdelete.json.php -------------------------------------------------------------------------------- /htdocs/auth/saml/idpmetadata.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/idpmetadata.json.php -------------------------------------------------------------------------------- /htdocs/auth/saml/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/index.php -------------------------------------------------------------------------------- /htdocs/auth/saml/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/lib.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/disco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/disco.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/metadata.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/module.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/saml1-acs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/saml1-acs.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/saml2-acs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/saml2-acs.php -------------------------------------------------------------------------------- /htdocs/auth/saml/sp/saml2-logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/sp/saml2-logout.php -------------------------------------------------------------------------------- /htdocs/auth/saml/validateurlsyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/validateurlsyntax.php -------------------------------------------------------------------------------- /htdocs/auth/saml/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/saml/version.php -------------------------------------------------------------------------------- /htdocs/auth/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/session.php -------------------------------------------------------------------------------- /htdocs/auth/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/user.php -------------------------------------------------------------------------------- /htdocs/auth/webservice/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/webservice/db/install.xml -------------------------------------------------------------------------------- /htdocs/auth/webservice/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/webservice/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/auth/webservice/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/webservice/lib.php -------------------------------------------------------------------------------- /htdocs/auth/webservice/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/webservice/version.php -------------------------------------------------------------------------------- /htdocs/auth/xmlrpc/jump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/xmlrpc/jump.php -------------------------------------------------------------------------------- /htdocs/auth/xmlrpc/land.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/xmlrpc/land.php -------------------------------------------------------------------------------- /htdocs/auth/xmlrpc/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/xmlrpc/lib.php -------------------------------------------------------------------------------- /htdocs/auth/xmlrpc/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/auth/xmlrpc/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/beforetables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/beforetables.xml -------------------------------------------------------------------------------- /htdocs/blocktype/blocktype.ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/blocktype.ajax.php -------------------------------------------------------------------------------- /htdocs/blocktype/config.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/config.json.php -------------------------------------------------------------------------------- /htdocs/blocktype/courseinfo/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/courseinfo/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/externalfeed/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/externalfeed/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/externalvideo/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/externalvideo/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/extratables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/extratables.xml -------------------------------------------------------------------------------- /htdocs/blocktype/googleapps/LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/googleapps/LGPL-2.1 -------------------------------------------------------------------------------- /htdocs/blocktype/googleapps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/googleapps/README -------------------------------------------------------------------------------- /htdocs/blocktype/googleapps/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/googleapps/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/groupinfo/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/groupinfo/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/groupinfo/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/groupinfo/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/groupmembers/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/groupmembers/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/groupviews/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/groupviews/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/inbox/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/inbox/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/inbox/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/inbox/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/blocktype/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/myfriends/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/myfriends/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/myfriends/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/myfriends/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/mygroups/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/mygroups/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/mygroups/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/mygroups/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/myviews/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/myviews/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/myviews/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/myviews/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/navigation/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/navigation/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/newviews/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/newviews/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/newviews/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/newviews/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/placeholder/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/placeholder/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/text/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/text/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/blocktype/text/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/text/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/text/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/text/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/verification/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/verification/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/wall/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/db/install.xml -------------------------------------------------------------------------------- /htdocs/blocktype/wall/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/blocktype/wall/deletepost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/deletepost.php -------------------------------------------------------------------------------- /htdocs/blocktype/wall/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/wall/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/version.php -------------------------------------------------------------------------------- /htdocs/blocktype/wall/wall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/wall/wall.php -------------------------------------------------------------------------------- /htdocs/blocktype/watchlist/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/watchlist/lib.php -------------------------------------------------------------------------------- /htdocs/blocktype/watchlist/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/blocktype/watchlist/version.php -------------------------------------------------------------------------------- /htdocs/changelanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/changelanguage.php -------------------------------------------------------------------------------- /htdocs/collection/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/delete.php -------------------------------------------------------------------------------- /htdocs/collection/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/edit.php -------------------------------------------------------------------------------- /htdocs/collection/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/index.php -------------------------------------------------------------------------------- /htdocs/collection/manageoutcomes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/manageoutcomes.php -------------------------------------------------------------------------------- /htdocs/collection/outcomesoverview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/outcomesoverview.php -------------------------------------------------------------------------------- /htdocs/collection/viewcontent.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/viewcontent.json.php -------------------------------------------------------------------------------- /htdocs/collection/views.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/views.json.php -------------------------------------------------------------------------------- /htdocs/collection/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/collection/views.php -------------------------------------------------------------------------------- /htdocs/config-dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/config-dist.php -------------------------------------------------------------------------------- /htdocs/config-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/config-environment.php -------------------------------------------------------------------------------- /htdocs/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/contact.php -------------------------------------------------------------------------------- /htdocs/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/download.php -------------------------------------------------------------------------------- /htdocs/downloadarchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/downloadarchive.php -------------------------------------------------------------------------------- /htdocs/edittags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/edittags.php -------------------------------------------------------------------------------- /htdocs/export/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/TODO.txt -------------------------------------------------------------------------------- /htdocs/export/download-progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/download-progress.php -------------------------------------------------------------------------------- /htdocs/export/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/download.php -------------------------------------------------------------------------------- /htdocs/export/html/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/html/TODO.txt -------------------------------------------------------------------------------- /htdocs/export/html/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/html/lib.php -------------------------------------------------------------------------------- /htdocs/export/html/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/html/version.php -------------------------------------------------------------------------------- /htdocs/export/htmllite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/htmllite/README.md -------------------------------------------------------------------------------- /htdocs/export/htmllite/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/htmllite/lib.php -------------------------------------------------------------------------------- /htdocs/export/htmllite/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/htmllite/version.php -------------------------------------------------------------------------------- /htdocs/export/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/index.php -------------------------------------------------------------------------------- /htdocs/export/leap/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/leap/TODO.txt -------------------------------------------------------------------------------- /htdocs/export/leap/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/leap/lib.php -------------------------------------------------------------------------------- /htdocs/export/leap/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/leap/version.php -------------------------------------------------------------------------------- /htdocs/export/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/lib.php -------------------------------------------------------------------------------- /htdocs/export/pdf/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/pdf/lib.php -------------------------------------------------------------------------------- /htdocs/export/pdf/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/pdf/version.php -------------------------------------------------------------------------------- /htdocs/export/pdflite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/pdflite/README.md -------------------------------------------------------------------------------- /htdocs/export/pdflite/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/pdflite/lib.php -------------------------------------------------------------------------------- /htdocs/export/pdflite/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/export/pdflite/version.php -------------------------------------------------------------------------------- /htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/favicon.ico -------------------------------------------------------------------------------- /htdocs/forgotpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/forgotpass.php -------------------------------------------------------------------------------- /htdocs/group/addlabel.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/addlabel.json.php -------------------------------------------------------------------------------- /htdocs/group/addmembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/addmembers.php -------------------------------------------------------------------------------- /htdocs/group/archives.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/archives.json.php -------------------------------------------------------------------------------- /htdocs/group/archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/archives.php -------------------------------------------------------------------------------- /htdocs/group/archivescsvdownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/archivescsvdownload.php -------------------------------------------------------------------------------- /htdocs/group/changerole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/changerole.php -------------------------------------------------------------------------------- /htdocs/group/controlledgroups.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/controlledgroups.json.php -------------------------------------------------------------------------------- /htdocs/group/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/copy.php -------------------------------------------------------------------------------- /htdocs/group/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/delete.php -------------------------------------------------------------------------------- /htdocs/group/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/edit.php -------------------------------------------------------------------------------- /htdocs/group/groupinfo.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/groupinfo.json.php -------------------------------------------------------------------------------- /htdocs/group/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/group/index.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/index.json.php -------------------------------------------------------------------------------- /htdocs/group/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/index.php -------------------------------------------------------------------------------- /htdocs/group/interactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/interactions.php -------------------------------------------------------------------------------- /htdocs/group/invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/invite.php -------------------------------------------------------------------------------- /htdocs/group/inviteusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/inviteusers.php -------------------------------------------------------------------------------- /htdocs/group/label.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/label.json.php -------------------------------------------------------------------------------- /htdocs/group/leave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/leave.php -------------------------------------------------------------------------------- /htdocs/group/members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/members.php -------------------------------------------------------------------------------- /htdocs/group/outcomes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/outcomes.php -------------------------------------------------------------------------------- /htdocs/group/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/report.php -------------------------------------------------------------------------------- /htdocs/group/requestjoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/requestjoin.php -------------------------------------------------------------------------------- /htdocs/group/shareviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/shareviews.php -------------------------------------------------------------------------------- /htdocs/group/suggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/suggest.php -------------------------------------------------------------------------------- /htdocs/group/topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/topics.php -------------------------------------------------------------------------------- /htdocs/group/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/group/view.php -------------------------------------------------------------------------------- /htdocs/grouptype/course/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/course/lib.php -------------------------------------------------------------------------------- /htdocs/grouptype/course/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/course/version.php -------------------------------------------------------------------------------- /htdocs/grouptype/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/grouptype/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/lib.php -------------------------------------------------------------------------------- /htdocs/grouptype/outcomes/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/outcomes/lib.php -------------------------------------------------------------------------------- /htdocs/grouptype/outcomes/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/outcomes/version.php -------------------------------------------------------------------------------- /htdocs/grouptype/standard/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/standard/lib.php -------------------------------------------------------------------------------- /htdocs/grouptype/standard/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/grouptype/standard/version.php -------------------------------------------------------------------------------- /htdocs/homeinfo.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/homeinfo.json.php -------------------------------------------------------------------------------- /htdocs/import/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/TODO.txt -------------------------------------------------------------------------------- /htdocs/import/file/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/file/lib.php -------------------------------------------------------------------------------- /htdocs/import/file/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/file/version.php -------------------------------------------------------------------------------- /htdocs/import/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/index.php -------------------------------------------------------------------------------- /htdocs/import/leap/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/leap/lib.php -------------------------------------------------------------------------------- /htdocs/import/leap/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/leap/version.php -------------------------------------------------------------------------------- /htdocs/import/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/import/lib.php -------------------------------------------------------------------------------- /htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/index.php -------------------------------------------------------------------------------- /htdocs/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/init.php -------------------------------------------------------------------------------- /htdocs/institution/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/institution/index.php -------------------------------------------------------------------------------- /htdocs/interaction/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/README -------------------------------------------------------------------------------- /htdocs/interaction/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/delete.php -------------------------------------------------------------------------------- /htdocs/interaction/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/edit.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/atom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/atom.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/editpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/editpost.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/edittopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/edittopic.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/index.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/lib.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/topic.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/version.php -------------------------------------------------------------------------------- /htdocs/interaction/forum/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/forum/view.php -------------------------------------------------------------------------------- /htdocs/interaction/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/interaction/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/interaction/lib.php -------------------------------------------------------------------------------- /htdocs/js/DataTables/README.mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/DataTables/README.mahara -------------------------------------------------------------------------------- /htdocs/js/DataTables/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/DataTables/datatables.min.js -------------------------------------------------------------------------------- /htdocs/js/accessibilityreorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/accessibilityreorder.js -------------------------------------------------------------------------------- /htdocs/js/adminadduser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminadduser.js -------------------------------------------------------------------------------- /htdocs/js/adminexportqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminexportqueue.js -------------------------------------------------------------------------------- /htdocs/js/adminreleasesubmissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminreleasesubmissions.js -------------------------------------------------------------------------------- /htdocs/js/adminsiteoptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminsiteoptions.js -------------------------------------------------------------------------------- /htdocs/js/adminsitepages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminsitepages.js -------------------------------------------------------------------------------- /htdocs/js/adminuploadcsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminuploadcsv.js -------------------------------------------------------------------------------- /htdocs/js/adminusersearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/adminusersearch.js -------------------------------------------------------------------------------- /htdocs/js/ajaxblocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/ajaxblocks.js -------------------------------------------------------------------------------- /htdocs/js/bootstrap-ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/bootstrap-ratings.js -------------------------------------------------------------------------------- /htdocs/js/chartjs/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/chartjs/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/chartjs/dist/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/chartjs/dist/Chart.min.js -------------------------------------------------------------------------------- /htdocs/js/chartjs/dist/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/chartjs/dist/LICENSE.md -------------------------------------------------------------------------------- /htdocs/js/clipboard/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/clipboard/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /htdocs/js/collection-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/collection-navigation.js -------------------------------------------------------------------------------- /htdocs/js/cookieconsent/README.mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/cookieconsent/README.mahara -------------------------------------------------------------------------------- /htdocs/js/dragondrop/README.mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dragondrop/README.mahara -------------------------------------------------------------------------------- /htdocs/js/dragondrop/dragon-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dragondrop/dragon-drop.js -------------------------------------------------------------------------------- /htdocs/js/dropdown-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dropdown-nav.js -------------------------------------------------------------------------------- /htdocs/js/dropzone/README.mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dropzone/README.mahara -------------------------------------------------------------------------------- /htdocs/js/dropzone/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dropzone/dropzone.min.css -------------------------------------------------------------------------------- /htdocs/js/dropzone/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/dropzone/dropzone.min.js -------------------------------------------------------------------------------- /htdocs/js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/export.js -------------------------------------------------------------------------------- /htdocs/js/formchangechecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/formchangechecker.js -------------------------------------------------------------------------------- /htdocs/js/gridlayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/gridlayout.js -------------------------------------------------------------------------------- /htdocs/js/gridstack/README.mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/gridstack/README.mahara -------------------------------------------------------------------------------- /htdocs/js/groupbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/groupbox.js -------------------------------------------------------------------------------- /htdocs/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/js/jTLine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/LICENSE -------------------------------------------------------------------------------- /htdocs/js/jTLine/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/jTLine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/README.md -------------------------------------------------------------------------------- /htdocs/js/jTLine/js/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/js/data.json -------------------------------------------------------------------------------- /htdocs/js/jTLine/js/jtline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/js/jtline.js -------------------------------------------------------------------------------- /htdocs/js/jTLine/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jTLine/js/modernizr.js -------------------------------------------------------------------------------- /htdocs/js/jquery/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jquery/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jquery/jquery.js -------------------------------------------------------------------------------- /htdocs/js/jscolor/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jscolor/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/jscolor/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jscolor/jscolor.js -------------------------------------------------------------------------------- /htdocs/js/jsoneditor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jsoneditor/LICENSE -------------------------------------------------------------------------------- /htdocs/js/jsoneditor/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jsoneditor/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/jsoneditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/jsoneditor/README.md -------------------------------------------------------------------------------- /htdocs/js/mahara.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/mahara.js -------------------------------------------------------------------------------- /htdocs/js/manage-collection-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/manage-collection-pages.js -------------------------------------------------------------------------------- /htdocs/js/marked/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/marked/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/marked/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/marked/marked.min.js -------------------------------------------------------------------------------- /htdocs/js/masonry/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/masonry/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/masonry/masonry.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/masonry/masonry.min.js -------------------------------------------------------------------------------- /htdocs/js/momentjs/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/momentjs/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/paginator.js -------------------------------------------------------------------------------- /htdocs/js/popper/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/popper/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/popper/popper.min.js -------------------------------------------------------------------------------- /htdocs/js/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/preview.js -------------------------------------------------------------------------------- /htdocs/js/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/privacy.js -------------------------------------------------------------------------------- /htdocs/js/searchtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/searchtable.js -------------------------------------------------------------------------------- /htdocs/js/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/LICENSE.md -------------------------------------------------------------------------------- /htdocs/js/select2/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/af.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ar.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/az.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/bg.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/bn.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/bs.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ca.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/cs.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/da.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/de.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/dsb.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/el.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/en.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/es.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/et.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/eu.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/fa.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/fi.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/fr.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/gl.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/he.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/hi.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/hr.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/hsb.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/hu.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/hy.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/id.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/is.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/it.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ja.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ka.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/km.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ko.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/lt.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/lv.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/mk.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ms.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/nb.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ne.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/nl.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/pl.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ps.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/pt.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ro.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/ru.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sk.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sl.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sq.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sr.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/sv.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/th.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/tk.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/tr.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/uk.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/vi.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /htdocs/js/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /htdocs/js/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/select2/select2.full.js -------------------------------------------------------------------------------- /htdocs/js/switchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/switchbox.js -------------------------------------------------------------------------------- /htdocs/js/tablerenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/tablerenderer.js -------------------------------------------------------------------------------- /htdocs/js/textareamaxlengthchecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/textareamaxlengthchecker.js -------------------------------------------------------------------------------- /htdocs/js/viewmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/viewmenu.js -------------------------------------------------------------------------------- /htdocs/js/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/views.js -------------------------------------------------------------------------------- /htdocs/js/zxcvbn/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/zxcvbn/LICENSE.txt -------------------------------------------------------------------------------- /htdocs/js/zxcvbn/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/zxcvbn/README.Mahara -------------------------------------------------------------------------------- /htdocs/js/zxcvbn/zxcvbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/js/zxcvbn/zxcvbn.js -------------------------------------------------------------------------------- /htdocs/json/friendsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/friendsearch.php -------------------------------------------------------------------------------- /htdocs/json/graphdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/graphdata.php -------------------------------------------------------------------------------- /htdocs/json/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/help.php -------------------------------------------------------------------------------- /htdocs/json/imagebrowser.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/imagebrowser.json.php -------------------------------------------------------------------------------- /htdocs/json/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/json/outcomes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/outcomes.php -------------------------------------------------------------------------------- /htdocs/json/outcomesnewform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/outcomesnewform.php -------------------------------------------------------------------------------- /htdocs/json/privacystatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/privacystatement.php -------------------------------------------------------------------------------- /htdocs/json/progress_meter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/progress_meter.php -------------------------------------------------------------------------------- /htdocs/json/quota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/quota.php -------------------------------------------------------------------------------- /htdocs/json/relatedtagsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/relatedtagsearch.php -------------------------------------------------------------------------------- /htdocs/json/selfsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/selfsearch.php -------------------------------------------------------------------------------- /htdocs/json/sharedviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/sharedviews.php -------------------------------------------------------------------------------- /htdocs/json/stats_setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/stats_setting.php -------------------------------------------------------------------------------- /htdocs/json/taglist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/taglist.php -------------------------------------------------------------------------------- /htdocs/json/tagsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/tagsearch.php -------------------------------------------------------------------------------- /htdocs/json/termsandconditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/termsandconditions.php -------------------------------------------------------------------------------- /htdocs/json/tinymceviewlist.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/tinymceviewlist.json.php -------------------------------------------------------------------------------- /htdocs/json/topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/topics.php -------------------------------------------------------------------------------- /htdocs/json/usersearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/usersearch.php -------------------------------------------------------------------------------- /htdocs/json/viewlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/json/viewlist.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/account.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/activity.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/admin.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/auth.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/behat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/behat.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/collection.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/cookieconsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/cookieconsent.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/error.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/export.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/group.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/import.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/install.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/langconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/langconfig.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/langpacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/langpacks.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/mahara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/mahara.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/performance.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/pieforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/pieforms.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/skin.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/statistics.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/view.php -------------------------------------------------------------------------------- /htdocs/lang/en.utf8/webservices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/en.utf8/webservices.php -------------------------------------------------------------------------------- /htdocs/lang/get_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lang/get_string.php -------------------------------------------------------------------------------- /htdocs/lang/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/legal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/legal.php -------------------------------------------------------------------------------- /htdocs/lib/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/access.php -------------------------------------------------------------------------------- /htdocs/lib/accesscontrol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/accesscontrol.php -------------------------------------------------------------------------------- /htdocs/lib/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/activity.php -------------------------------------------------------------------------------- /htdocs/lib/activity/ActivityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/activity/ActivityType.php -------------------------------------------------------------------------------- /htdocs/lib/antispam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/antispam.php -------------------------------------------------------------------------------- /htdocs/lib/antispam/NoneSpamTrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/antispam/NoneSpamTrap.php -------------------------------------------------------------------------------- /htdocs/lib/antispam/SimpleSpamTrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/antispam/SimpleSpamTrap.php -------------------------------------------------------------------------------- /htdocs/lib/application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/application.php -------------------------------------------------------------------------------- /htdocs/lib/applicationset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/applicationset.php -------------------------------------------------------------------------------- /htdocs/lib/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/cli.php -------------------------------------------------------------------------------- /htdocs/lib/collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/collection.php -------------------------------------------------------------------------------- /htdocs/lib/config-defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/config-defaults.php -------------------------------------------------------------------------------- /htdocs/lib/cookieconsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/cookieconsent.php -------------------------------------------------------------------------------- /htdocs/lib/country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/country.php -------------------------------------------------------------------------------- /htdocs/lib/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/cron.php -------------------------------------------------------------------------------- /htdocs/lib/csvfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/csvfile.php -------------------------------------------------------------------------------- /htdocs/lib/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/db/install.xml -------------------------------------------------------------------------------- /htdocs/lib/db/plugintables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/db/plugintables.xml -------------------------------------------------------------------------------- /htdocs/lib/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/lib/ddl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/ddl.php -------------------------------------------------------------------------------- /htdocs/lib/dml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dml.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/.gitignore -------------------------------------------------------------------------------- /htdocs/lib/dwoo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/CHANGELOG.md -------------------------------------------------------------------------------- /htdocs/lib/dwoo/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/LICENSE.md -------------------------------------------------------------------------------- /htdocs/lib/dwoo/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/README.Mahara -------------------------------------------------------------------------------- /htdocs/lib/dwoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/README.md -------------------------------------------------------------------------------- /htdocs/lib/dwoo/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/composer.json -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Compiler.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Core.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Data.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Filter.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/ILoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/ILoader.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Loader.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/dwoo/Dwoo/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/dwoo/Dwoo/Plugin.php -------------------------------------------------------------------------------- /htdocs/lib/dwoo/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/dwoo/vendor/autoload.php -------------------------------------------------------------------------------- /htdocs/lib/embeddedimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/embeddedimage.php -------------------------------------------------------------------------------- /htdocs/lib/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/errors.php -------------------------------------------------------------------------------- /htdocs/lib/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/file.php -------------------------------------------------------------------------------- /htdocs/lib/fonts/Aurulent-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/Aurulent-OFL.txt -------------------------------------------------------------------------------- /htdocs/lib/fonts/AurulentSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/AurulentSans.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/CharisSILR-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/CharisSILR-OFL.txt -------------------------------------------------------------------------------- /htdocs/lib/fonts/CharisSILR.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/CharisSILR.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/NimbusMonoL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/NimbusMonoL.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/NimbusRomanNo9L.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/NimbusRomanNo9L.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/NimbusSansL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/NimbusSansL.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/README.Mahara -------------------------------------------------------------------------------- /htdocs/lib/fonts/URWBookmanL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/URWBookmanL.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/URWChanceryL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/URWChanceryL.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/URWGothicL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/URWGothicL.ttf -------------------------------------------------------------------------------- /htdocs/lib/fonts/URWPalladioL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/fonts/URWPalladioL.ttf -------------------------------------------------------------------------------- /htdocs/lib/form/elements/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/captcha.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/color.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/files.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/ratings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/ratings.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/tags.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/viewacl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/viewacl.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/weight.php -------------------------------------------------------------------------------- /htdocs/lib/form/elements/wysiwyg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/form/elements/wysiwyg.php -------------------------------------------------------------------------------- /htdocs/lib/form/rules/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/lib/function.dirsize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/function.dirsize.php -------------------------------------------------------------------------------- /htdocs/lib/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/graph.php -------------------------------------------------------------------------------- /htdocs/lib/gridstacklayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/gridstacklayout.php -------------------------------------------------------------------------------- /htdocs/lib/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/group.php -------------------------------------------------------------------------------- /htdocs/lib/htmlpurifier/schema.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/htmlpurifier/schema.ser -------------------------------------------------------------------------------- /htdocs/lib/htmltotext/htmltotext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/htmltotext/htmltotext.php -------------------------------------------------------------------------------- /htdocs/lib/imagebrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/imagebrowser.php -------------------------------------------------------------------------------- /htdocs/lib/imageresizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/imageresizer.php -------------------------------------------------------------------------------- /htdocs/lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/lib/institution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/institution.php -------------------------------------------------------------------------------- /htdocs/lib/layoutpreviewimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/layoutpreviewimage.php -------------------------------------------------------------------------------- /htdocs/lib/license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/license.php -------------------------------------------------------------------------------- /htdocs/lib/mahara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/mahara.php -------------------------------------------------------------------------------- /htdocs/lib/manualhelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/manualhelp.php -------------------------------------------------------------------------------- /htdocs/lib/objectionable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/objectionable.php -------------------------------------------------------------------------------- /htdocs/lib/outcomes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/outcomes.php -------------------------------------------------------------------------------- /htdocs/lib/peer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/peer.php -------------------------------------------------------------------------------- /htdocs/lib/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/phpunit.php -------------------------------------------------------------------------------- /htdocs/lib/pieforms/pieform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/pieforms/pieform.php -------------------------------------------------------------------------------- /htdocs/lib/processemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/processemail.php -------------------------------------------------------------------------------- /htdocs/lib/redis/sentinel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/redis/sentinel.php -------------------------------------------------------------------------------- /htdocs/lib/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/registration.php -------------------------------------------------------------------------------- /htdocs/lib/revokemyaccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/revokemyaccess.php -------------------------------------------------------------------------------- /htdocs/lib/searchlib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/searchlib.php -------------------------------------------------------------------------------- /htdocs/lib/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/sitemap.php -------------------------------------------------------------------------------- /htdocs/lib/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/skin.php -------------------------------------------------------------------------------- /htdocs/lib/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/statistics.php -------------------------------------------------------------------------------- /htdocs/lib/tests/phpunit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/tests/phpunit/README -------------------------------------------------------------------------------- /htdocs/lib/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/upgrade.php -------------------------------------------------------------------------------- /htdocs/lib/uploadmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/uploadmanager.php -------------------------------------------------------------------------------- /htdocs/lib/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/user.php -------------------------------------------------------------------------------- /htdocs/lib/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/version.php -------------------------------------------------------------------------------- /htdocs/lib/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/view.php -------------------------------------------------------------------------------- /htdocs/lib/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/web.php -------------------------------------------------------------------------------- /htdocs/lib/xmldb/xmldb.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/xmldb/xmldb.dtd -------------------------------------------------------------------------------- /htdocs/lib/xmldb/xmldb.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/xmldb/xmldb.xsd -------------------------------------------------------------------------------- /htdocs/lib/xmlize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/lib/xmlize.php -------------------------------------------------------------------------------- /htdocs/local/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/local/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/local/install.php -------------------------------------------------------------------------------- /htdocs/local/lang/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/local/lib-dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/local/lib-dist.php -------------------------------------------------------------------------------- /htdocs/local/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/local/readme.txt -------------------------------------------------------------------------------- /htdocs/local/theme/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/local/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/local/upgrade.php -------------------------------------------------------------------------------- /htdocs/local/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/local/version.php -------------------------------------------------------------------------------- /htdocs/map/componentmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/map/componentmap.php -------------------------------------------------------------------------------- /htdocs/minilogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/minilogin.php -------------------------------------------------------------------------------- /htdocs/module/framework/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/framework/js/editor.js -------------------------------------------------------------------------------- /htdocs/module/framework/js/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/framework/js/matrix.js -------------------------------------------------------------------------------- /htdocs/module/framework/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/framework/lib.php -------------------------------------------------------------------------------- /htdocs/module/framework/matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/framework/matrix.php -------------------------------------------------------------------------------- /htdocs/module/framework/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/framework/version.php -------------------------------------------------------------------------------- /htdocs/module/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lib.php -------------------------------------------------------------------------------- /htdocs/module/lti/configxml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/configxml.php -------------------------------------------------------------------------------- /htdocs/module/lti/db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/db/install.xml -------------------------------------------------------------------------------- /htdocs/module/lti/db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/db/upgrade.php -------------------------------------------------------------------------------- /htdocs/module/lti/graderedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/graderedirect.php -------------------------------------------------------------------------------- /htdocs/module/lti/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/lib.php -------------------------------------------------------------------------------- /htdocs/module/lti/submission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/submission.php -------------------------------------------------------------------------------- /htdocs/module/lti/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti/version.php -------------------------------------------------------------------------------- /htdocs/module/lti_advantage/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti_advantage/home.php -------------------------------------------------------------------------------- /htdocs/module/lti_advantage/jwks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti_advantage/jwks.php -------------------------------------------------------------------------------- /htdocs/module/lti_advantage/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/lti_advantage/lib.php -------------------------------------------------------------------------------- /htdocs/module/mobileapi/apps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/mobileapi/apps.php -------------------------------------------------------------------------------- /htdocs/module/mobileapi/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/mobileapi/download.php -------------------------------------------------------------------------------- /htdocs/module/mobileapi/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/mobileapi/lib.php -------------------------------------------------------------------------------- /htdocs/module/mobileapi/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/mobileapi/version.php -------------------------------------------------------------------------------- /htdocs/module/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/monitor/README.md -------------------------------------------------------------------------------- /htdocs/module/monitor/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/monitor/lib.php -------------------------------------------------------------------------------- /htdocs/module/monitor/monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/monitor/monitor.php -------------------------------------------------------------------------------- /htdocs/module/monitor/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/monitor/version.php -------------------------------------------------------------------------------- /htdocs/module/submissions/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/submissions/index.php -------------------------------------------------------------------------------- /htdocs/module/submissions/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/submissions/init.php -------------------------------------------------------------------------------- /htdocs/module/submissions/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/module/submissions/lib.php -------------------------------------------------------------------------------- /htdocs/module/submissions/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /htdocs/notification/email/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/notification/email/lib.php -------------------------------------------------------------------------------- /htdocs/notification/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/notification/internal/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/notification/internal/lib.php -------------------------------------------------------------------------------- /htdocs/notification/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/notification/lib.php -------------------------------------------------------------------------------- /htdocs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/package.json -------------------------------------------------------------------------------- /htdocs/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/register.php -------------------------------------------------------------------------------- /htdocs/relatedtags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/relatedtags.php -------------------------------------------------------------------------------- /htdocs/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/search/elasticsearch/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/elasticsearch/cron.php -------------------------------------------------------------------------------- /htdocs/search/elasticsearch/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/elasticsearch/lib.php -------------------------------------------------------------------------------- /htdocs/search/elasticsearch7/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/elasticsearch7/lib.php -------------------------------------------------------------------------------- /htdocs/search/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/search/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/index.php -------------------------------------------------------------------------------- /htdocs/search/internal/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/internal/lib.php -------------------------------------------------------------------------------- /htdocs/search/internal/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/internal/version.php -------------------------------------------------------------------------------- /htdocs/search/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/search/lib.php -------------------------------------------------------------------------------- /htdocs/selfsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/selfsearch.php -------------------------------------------------------------------------------- /htdocs/skin/css/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/css/design.css -------------------------------------------------------------------------------- /htdocs/skin/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/delete.php -------------------------------------------------------------------------------- /htdocs/skin/design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/design.php -------------------------------------------------------------------------------- /htdocs/skin/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/export.php -------------------------------------------------------------------------------- /htdocs/skin/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/favorite.php -------------------------------------------------------------------------------- /htdocs/skin/font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/font.php -------------------------------------------------------------------------------- /htdocs/skin/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/import.php -------------------------------------------------------------------------------- /htdocs/skin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/index.php -------------------------------------------------------------------------------- /htdocs/skin/licence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/licence.php -------------------------------------------------------------------------------- /htdocs/skin/no-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/no-thumb.png -------------------------------------------------------------------------------- /htdocs/skin/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/style.php -------------------------------------------------------------------------------- /htdocs/skin/thumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/skin/thumb.php -------------------------------------------------------------------------------- /htdocs/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/style.php -------------------------------------------------------------------------------- /htdocs/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/tags.php -------------------------------------------------------------------------------- /htdocs/testing/classes/TestLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/testing/classes/TestLock.php -------------------------------------------------------------------------------- /htdocs/testing/classes/util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/testing/classes/util.php -------------------------------------------------------------------------------- /htdocs/testing/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/testing/lib.php -------------------------------------------------------------------------------- /htdocs/theme/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/Readme.md -------------------------------------------------------------------------------- /htdocs/theme/custom/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/custom/js/theme.js -------------------------------------------------------------------------------- /htdocs/theme/custom/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/custom/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/default/.gitignore: -------------------------------------------------------------------------------- 1 | style/ -------------------------------------------------------------------------------- /htdocs/theme/default/sass/_custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/theme/default/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/default/sass/style.scss -------------------------------------------------------------------------------- /htdocs/theme/default/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/default/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/theme/maroon/.gitignore: -------------------------------------------------------------------------------- 1 | style/ -------------------------------------------------------------------------------- /htdocs/theme/maroon/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/maroon/sass/style.scss -------------------------------------------------------------------------------- /htdocs/theme/maroon/sass/typography/_icons.scss: -------------------------------------------------------------------------------- 1 | .icon-lg { 2 | font-size: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /htdocs/theme/maroon/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/maroon/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/modern/.gitignore: -------------------------------------------------------------------------------- 1 | style/ 2 | npm-debug.log -------------------------------------------------------------------------------- /htdocs/theme/modern/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/modern/sass/style.scss -------------------------------------------------------------------------------- /htdocs/theme/modern/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/modern/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/ocean/.gitignore: -------------------------------------------------------------------------------- 1 | style/ -------------------------------------------------------------------------------- /htdocs/theme/ocean/sass/_custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/theme/ocean/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/ocean/sass/style.scss -------------------------------------------------------------------------------- /htdocs/theme/ocean/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/ocean/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/primaryschool/.gitignore: -------------------------------------------------------------------------------- 1 | style/ -------------------------------------------------------------------------------- /htdocs/theme/raw/.gitignore: -------------------------------------------------------------------------------- 1 | style/ 2 | -------------------------------------------------------------------------------- /htdocs/theme/raw/fonts/README.Mahara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/fonts/README.Mahara -------------------------------------------------------------------------------- /htdocs/theme/raw/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/images/calendar.png -------------------------------------------------------------------------------- /htdocs/theme/raw/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/images/feedback.png -------------------------------------------------------------------------------- /htdocs/theme/raw/js/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/access.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/dock.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/filebrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/filebrowser.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/formtabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/formtabs.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/modal.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/notification.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/pieform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/pieform.js -------------------------------------------------------------------------------- /htdocs/theme/raw/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/js/theme.js -------------------------------------------------------------------------------- /htdocs/theme/raw/pieforms/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/pieforms/export.php -------------------------------------------------------------------------------- /htdocs/theme/raw/plugintype/artefact/blog/blocktype/blogpost/templates/blogpost.tpl: -------------------------------------------------------------------------------- 1 | {$html|safe} 2 | -------------------------------------------------------------------------------- /htdocs/theme/raw/plugintype/artefact/file/blocktype/internalmedia/templates/internalmedia.tpl: -------------------------------------------------------------------------------- 1 | {$html|safe} 2 | -------------------------------------------------------------------------------- /htdocs/theme/raw/plugintype/blocktype/groupinfo/templates/groupinfo.tpl: -------------------------------------------------------------------------------- 1 | {include file="group/info.tpl"} 2 | 3 | -------------------------------------------------------------------------------- /htdocs/theme/raw/plugintype/export/leap/templates/entryfooter.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htdocs/theme/raw/plugintype/export/leap/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htdocs/theme/raw/sass/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/sass/_custom.scss -------------------------------------------------------------------------------- /htdocs/theme/raw/sass/_shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/sass/_shame.scss -------------------------------------------------------------------------------- /htdocs/theme/raw/sass/lib/_star.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/sass/lib/_star.scss -------------------------------------------------------------------------------- /htdocs/theme/raw/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/sass/style.scss -------------------------------------------------------------------------------- /htdocs/theme/raw/sass/tinymce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/sass/tinymce.scss -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/admin/site/langfilecolumn.tpl: -------------------------------------------------------------------------------- 1 | {$r.file|clean_html|safe} -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/templates/error.tpl -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/templates/form.tpl -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/templates/index.tpl -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/templates/login.tpl -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/tags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/templates/tags.tpl -------------------------------------------------------------------------------- /htdocs/theme/raw/templates/view/rowediting.tpl: -------------------------------------------------------------------------------- 1 | 2 | {$rowcontent|safe} 3 | -------------------------------------------------------------------------------- /htdocs/theme/raw/themeconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/raw/themeconfig.php -------------------------------------------------------------------------------- /htdocs/theme/styleguide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/theme/styleguide.php -------------------------------------------------------------------------------- /htdocs/theme/subthemestarter/.gitignore: -------------------------------------------------------------------------------- 1 | style/ -------------------------------------------------------------------------------- /htdocs/theme/views-js.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/thumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/thumb.php -------------------------------------------------------------------------------- /htdocs/user/denyrequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/denyrequest.php -------------------------------------------------------------------------------- /htdocs/user/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/index.php -------------------------------------------------------------------------------- /htdocs/user/online.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/online.json.php -------------------------------------------------------------------------------- /htdocs/user/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/online.php -------------------------------------------------------------------------------- /htdocs/user/removefriend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/removefriend.php -------------------------------------------------------------------------------- /htdocs/user/requestfriendship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/requestfriendship.php -------------------------------------------------------------------------------- /htdocs/user/sendmessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/sendmessage.php -------------------------------------------------------------------------------- /htdocs/user/userdetail.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/userdetail.json.php -------------------------------------------------------------------------------- /htdocs/user/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/user/view.php -------------------------------------------------------------------------------- /htdocs/view/access.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/access.json.php -------------------------------------------------------------------------------- /htdocs/view/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/access.php -------------------------------------------------------------------------------- /htdocs/view/accessurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/accessurl.php -------------------------------------------------------------------------------- /htdocs/view/activitysupport.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/activitysupport.json.php -------------------------------------------------------------------------------- /htdocs/view/artefact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/artefact.php -------------------------------------------------------------------------------- /htdocs/view/artefactchooser.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/artefactchooser.json.php -------------------------------------------------------------------------------- /htdocs/view/blocks.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/blocks.json.php -------------------------------------------------------------------------------- /htdocs/view/blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/blocks.php -------------------------------------------------------------------------------- /htdocs/view/choosetemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/choosetemplate.php -------------------------------------------------------------------------------- /htdocs/view/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/copy.php -------------------------------------------------------------------------------- /htdocs/view/createversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/createversion.php -------------------------------------------------------------------------------- /htdocs/view/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/delete.php -------------------------------------------------------------------------------- /htdocs/view/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/download.php -------------------------------------------------------------------------------- /htdocs/view/editlayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/editlayout.php -------------------------------------------------------------------------------- /htdocs/view/grid.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/grid.json.php -------------------------------------------------------------------------------- /htdocs/view/groupviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/groupviews.php -------------------------------------------------------------------------------- /htdocs/view/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/index.php -------------------------------------------------------------------------------- /htdocs/view/institutionshare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/institutionshare.php -------------------------------------------------------------------------------- /htdocs/view/institutionviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/institutionviews.php -------------------------------------------------------------------------------- /htdocs/view/instructions.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/instructions.json.php -------------------------------------------------------------------------------- /htdocs/view/share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/share.php -------------------------------------------------------------------------------- /htdocs/view/sharedviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/sharedviews.php -------------------------------------------------------------------------------- /htdocs/view/skins.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/skins.json.php -------------------------------------------------------------------------------- /htdocs/view/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/submit.php -------------------------------------------------------------------------------- /htdocs/view/templatesearch.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/templatesearch.json.php -------------------------------------------------------------------------------- /htdocs/view/togglewatchlist.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/togglewatchlist.json.php -------------------------------------------------------------------------------- /htdocs/view/unsubscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/unsubscribe.php -------------------------------------------------------------------------------- /htdocs/view/urls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/urls.php -------------------------------------------------------------------------------- /htdocs/view/versioning.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/versioning.json.php -------------------------------------------------------------------------------- /htdocs/view/versioning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/versioning.php -------------------------------------------------------------------------------- /htdocs/view/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/view.php -------------------------------------------------------------------------------- /htdocs/view/viewblocks.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/viewblocks.json.php -------------------------------------------------------------------------------- /htdocs/view/viewcontent.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/viewcontent.json.php -------------------------------------------------------------------------------- /htdocs/view/viewtags.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/view/viewtags.json.php -------------------------------------------------------------------------------- /htdocs/webservice/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/admin/index.php -------------------------------------------------------------------------------- /htdocs/webservice/apptokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/apptokens.php -------------------------------------------------------------------------------- /htdocs/webservice/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/download.php -------------------------------------------------------------------------------- /htdocs/webservice/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/webservice/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/lib.php -------------------------------------------------------------------------------- /htdocs/webservice/libs/net.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/libs/net.php -------------------------------------------------------------------------------- /htdocs/webservice/locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/locallib.php -------------------------------------------------------------------------------- /htdocs/webservice/mahara_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/mahara_url.php -------------------------------------------------------------------------------- /htdocs/webservice/oauthv1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/oauthv1.php -------------------------------------------------------------------------------- /htdocs/webservice/rest/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/rest/lib.php -------------------------------------------------------------------------------- /htdocs/webservice/rest/locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/rest/locallib.php -------------------------------------------------------------------------------- /htdocs/webservice/rest/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/rest/server.php -------------------------------------------------------------------------------- /htdocs/webservice/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/services.php -------------------------------------------------------------------------------- /htdocs/webservice/services.xrds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/services.xrds.php -------------------------------------------------------------------------------- /htdocs/webservice/soap/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/soap/lib.php -------------------------------------------------------------------------------- /htdocs/webservice/soap/locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/soap/locallib.php -------------------------------------------------------------------------------- /htdocs/webservice/soap/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/soap/server.php -------------------------------------------------------------------------------- /htdocs/webservice/testclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/testclient.php -------------------------------------------------------------------------------- /htdocs/webservice/wsdoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/wsdoc.php -------------------------------------------------------------------------------- /htdocs/webservice/xmlrpc/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/xmlrpc/lib.php -------------------------------------------------------------------------------- /htdocs/webservice/xmlrpc/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/htdocs/webservice/xmlrpc/server.php -------------------------------------------------------------------------------- /js_patches/JS_PATCHES_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/js_patches/JS_PATCHES_README.md -------------------------------------------------------------------------------- /js_patches/fa_customisations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/js_patches/fa_customisations.patch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/package.json -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/htdocs/bootstrap+5.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/patches/htdocs/bootstrap+5.0.2.patch -------------------------------------------------------------------------------- /patches/htdocs/tinymce+5.10.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/patches/htdocs/tinymce+5.10.7.patch -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/phpunit.xml -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- 1 | This directory holds various test scripts for Mahara. 2 | -------------------------------------------------------------------------------- /test/WHITELIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/WHITELIST -------------------------------------------------------------------------------- /test/behat/chromedriver-2.38-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/chromedriver-2.38-linux64 -------------------------------------------------------------------------------- /test/behat/mahara_behat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/mahara_behat.sh -------------------------------------------------------------------------------- /test/behat/mahara_behat_php81.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/mahara_behat_php81.sh -------------------------------------------------------------------------------- /test/behat/upload_files/3images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/3images.zip -------------------------------------------------------------------------------- /test/behat/upload_files/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/Image1.jpg -------------------------------------------------------------------------------- /test/behat/upload_files/Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/Image2.png -------------------------------------------------------------------------------- /test/behat/upload_files/Image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/Image3.png -------------------------------------------------------------------------------- /test/behat/upload_files/UserCSV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/UserCSV.csv -------------------------------------------------------------------------------- /test/behat/upload_files/groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/groups.csv -------------------------------------------------------------------------------- /test/behat/upload_files/leap2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/leap2a.xml -------------------------------------------------------------------------------- /test/behat/upload_files/mahara.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/mahara.mp3 -------------------------------------------------------------------------------- /test/behat/upload_files/testvid1.3gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/testvid1.3gp -------------------------------------------------------------------------------- /test/behat/upload_files/testvid2.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/testvid2.mkv -------------------------------------------------------------------------------- /test/behat/upload_files/testvid3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/testvid3.mp4 -------------------------------------------------------------------------------- /test/behat/upload_files/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/behat/upload_files/users.csv -------------------------------------------------------------------------------- /test/cleanscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/cleanscript.sh -------------------------------------------------------------------------------- /test/closebraces.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/closebraces.sed -------------------------------------------------------------------------------- /test/coding-standard-check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/coding-standard-check.pl -------------------------------------------------------------------------------- /test/crontest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/crontest.php -------------------------------------------------------------------------------- /test/gnuopenbraces.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/gnuopenbraces.sed -------------------------------------------------------------------------------- /test/inlineopenbraces.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/inlineopenbraces.sed -------------------------------------------------------------------------------- /test/versioncheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaharaProject/mahara/HEAD/test/versioncheck.php --------------------------------------------------------------------------------