├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── descriptions.json │ ├── masterLinks.json │ ├── masterNodes.json │ └── subjects.json ├── components │ ├── CourseDescription.vue │ ├── CourseList.vue │ └── DegreeMap.vue ├── main.js ├── router │ └── index.js └── views │ └── Home.vue ├── static.json ├── test.sh └── tests └── test_urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | Coming soon. -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Issue Template 2 | 3 | Coming soon. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Pull Request Template 2 | 3 | Coming soon. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/assets/descriptions.json -------------------------------------------------------------------------------- /src/assets/masterLinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/assets/masterLinks.json -------------------------------------------------------------------------------- /src/assets/masterNodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/assets/masterNodes.json -------------------------------------------------------------------------------- /src/assets/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/assets/subjects.json -------------------------------------------------------------------------------- /src/components/CourseDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/components/CourseDescription.vue -------------------------------------------------------------------------------- /src/components/CourseList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/components/CourseList.vue -------------------------------------------------------------------------------- /src/components/DegreeMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/components/DegreeMap.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/static.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/test.sh -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlIllII/collecobrary/HEAD/tests/test_urls.py --------------------------------------------------------------------------------