├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── cssmain.css ├── dep.html ├── files ├── central_timetable_aut_2016.csv ├── central_timetable_aut_2016.pdf ├── subjects_spr_2016.json └── subs_ct_aut_2016.json ├── images ├── metakgp-logo.png └── mfqp_qr.png ├── include ├── footer.html ├── head.html ├── header.html ├── mail-snippet.html ├── subjects.json └── upload-button.html ├── index.html ├── jsmain.js ├── package.json ├── scripts ├── add-papers-from-library.rb ├── fix-json-objects.rb ├── fix-names.rb ├── images-to-pdfs │ ├── README.md │ └── images-to-pdfs.rb ├── parser │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── parser.rb ├── pretty_print_mfqp_json.rb ├── readme.md ├── sub_json_from_ct.py └── upload │ ├── Gemfile │ ├── Gemfile.lock │ ├── departments.json │ ├── readme.md │ ├── subjects.json │ └── upload.rb ├── subject_include.rb └── test_subject.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/README.md -------------------------------------------------------------------------------- /cssmain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/cssmain.css -------------------------------------------------------------------------------- /dep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/dep.html -------------------------------------------------------------------------------- /files/central_timetable_aut_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/files/central_timetable_aut_2016.csv -------------------------------------------------------------------------------- /files/central_timetable_aut_2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/files/central_timetable_aut_2016.pdf -------------------------------------------------------------------------------- /files/subjects_spr_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/files/subjects_spr_2016.json -------------------------------------------------------------------------------- /files/subs_ct_aut_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/files/subs_ct_aut_2016.json -------------------------------------------------------------------------------- /images/metakgp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/images/metakgp-logo.png -------------------------------------------------------------------------------- /images/mfqp_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/images/mfqp_qr.png -------------------------------------------------------------------------------- /include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/footer.html -------------------------------------------------------------------------------- /include/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/head.html -------------------------------------------------------------------------------- /include/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/header.html -------------------------------------------------------------------------------- /include/mail-snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/mail-snippet.html -------------------------------------------------------------------------------- /include/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/subjects.json -------------------------------------------------------------------------------- /include/upload-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/include/upload-button.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/index.html -------------------------------------------------------------------------------- /jsmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/jsmain.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/package.json -------------------------------------------------------------------------------- /scripts/add-papers-from-library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/add-papers-from-library.rb -------------------------------------------------------------------------------- /scripts/fix-json-objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/fix-json-objects.rb -------------------------------------------------------------------------------- /scripts/fix-names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/fix-names.rb -------------------------------------------------------------------------------- /scripts/images-to-pdfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/images-to-pdfs/README.md -------------------------------------------------------------------------------- /scripts/images-to-pdfs/images-to-pdfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/images-to-pdfs/images-to-pdfs.rb -------------------------------------------------------------------------------- /scripts/parser/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/parser/Gemfile -------------------------------------------------------------------------------- /scripts/parser/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/parser/Gemfile.lock -------------------------------------------------------------------------------- /scripts/parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/parser/README.md -------------------------------------------------------------------------------- /scripts/parser/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/parser/parser.rb -------------------------------------------------------------------------------- /scripts/pretty_print_mfqp_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/pretty_print_mfqp_json.rb -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/readme.md -------------------------------------------------------------------------------- /scripts/sub_json_from_ct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/sub_json_from_ct.py -------------------------------------------------------------------------------- /scripts/upload/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/Gemfile -------------------------------------------------------------------------------- /scripts/upload/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/Gemfile.lock -------------------------------------------------------------------------------- /scripts/upload/departments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/departments.json -------------------------------------------------------------------------------- /scripts/upload/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/readme.md -------------------------------------------------------------------------------- /scripts/upload/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/subjects.json -------------------------------------------------------------------------------- /scripts/upload/upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/scripts/upload/upload.rb -------------------------------------------------------------------------------- /subject_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/subject_include.rb -------------------------------------------------------------------------------- /test_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakgp/mfqp-source/HEAD/test_subject.rb --------------------------------------------------------------------------------