├── LICENSE ├── README.md ├── SECURITY.md ├── db ├── access.php ├── caches.php ├── install.xml └── upgrade.php ├── lang ├── cs │ └── repository_onenote.php ├── de │ └── repository_onenote.php ├── en │ └── repository_onenote.php ├── es │ └── repository_onenote.php ├── fi │ └── repository_onenote.php ├── fr │ └── repository_onenote.php ├── it │ └── repository_onenote.php ├── ja │ └── repository_onenote.php ├── nl │ └── repository_onenote.php ├── pl │ └── repository_onenote.php └── pt_br │ └── repository_onenote.php ├── lib.php ├── pix └── icon.png └── version.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/SECURITY.md -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/db/access.php -------------------------------------------------------------------------------- /db/caches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/db/caches.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /lang/cs/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/cs/repository_onenote.php -------------------------------------------------------------------------------- /lang/de/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/de/repository_onenote.php -------------------------------------------------------------------------------- /lang/en/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/en/repository_onenote.php -------------------------------------------------------------------------------- /lang/es/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/es/repository_onenote.php -------------------------------------------------------------------------------- /lang/fi/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/fi/repository_onenote.php -------------------------------------------------------------------------------- /lang/fr/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/fr/repository_onenote.php -------------------------------------------------------------------------------- /lang/it/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/it/repository_onenote.php -------------------------------------------------------------------------------- /lang/ja/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/ja/repository_onenote.php -------------------------------------------------------------------------------- /lang/nl/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/nl/repository_onenote.php -------------------------------------------------------------------------------- /lang/pl/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/pl/repository_onenote.php -------------------------------------------------------------------------------- /lang/pt_br/repository_onenote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lang/pt_br/repository_onenote.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/lib.php -------------------------------------------------------------------------------- /pix/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/pix/icon.png -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/moodle-repository_onenote/HEAD/version.php --------------------------------------------------------------------------------