├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── angular-cli.json ├── descriptiongif ├── Tutors_demo.png ├── elite_admin.png ├── elite_admin_ng2_gif.gif └── generated_timetable.png ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── error404 │ │ │ ├── error404.component.css │ │ │ ├── error404.component.html │ │ │ ├── error404.component.spec.ts │ │ │ └── error404.component.ts │ │ ├── footer │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── left-side-bar │ │ │ ├── left-side-bar.component.css │ │ │ ├── left-side-bar.component.html │ │ │ ├── left-side-bar.component.spec.ts │ │ │ └── left-side-bar.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── main-content │ │ │ ├── department-tutor-assignment │ │ │ │ ├── department-tutor-assignment.component.css │ │ │ │ ├── department-tutor-assignment.component.html │ │ │ │ ├── department-tutor-assignment.component.spec.ts │ │ │ │ └── department-tutor-assignment.component.ts │ │ │ ├── department │ │ │ │ ├── department.component.css │ │ │ │ ├── department.component.html │ │ │ │ ├── department.component.spec.ts │ │ │ │ └── department.component.ts │ │ │ ├── main-content.component.css │ │ │ ├── main-content.component.html │ │ │ ├── main-content.component.spec.ts │ │ │ ├── main-content.component.ts │ │ │ ├── programme-group │ │ │ │ ├── programme-group.component.css │ │ │ │ ├── programme-group.component.html │ │ │ │ ├── programme-group.component.spec.ts │ │ │ │ └── programme-group.component.ts │ │ │ ├── subject-allocation │ │ │ │ ├── subject-allocation.component.css │ │ │ │ ├── subject-allocation.component.html │ │ │ │ ├── subject-allocation.component.spec.ts │ │ │ │ └── subject-allocation.component.ts │ │ │ ├── subject │ │ │ │ ├── subject.component.css │ │ │ │ ├── subject.component.html │ │ │ │ ├── subject.component.spec.ts │ │ │ │ └── subject.component.ts │ │ │ ├── time-table-mgmt │ │ │ │ ├── time-table-mgmt.component.css │ │ │ │ ├── time-table-mgmt.component.html │ │ │ │ ├── time-table-mgmt.component.spec.ts │ │ │ │ └── time-table-mgmt.component.ts │ │ │ ├── time-table │ │ │ │ ├── time-table.component.css │ │ │ │ ├── time-table.component.html │ │ │ │ ├── time-table.component.spec.ts │ │ │ │ └── time-table.component.ts │ │ │ └── tutor │ │ │ │ ├── tutor.component.css │ │ │ │ ├── tutor.component.html │ │ │ │ ├── tutor.component.spec.ts │ │ │ │ └── tutor.component.ts │ │ └── top-navigation-bar │ │ │ ├── top-navigation-bar.component.css │ │ │ ├── top-navigation-bar.component.html │ │ │ ├── top-navigation-bar.component.spec.ts │ │ │ └── top-navigation-bar.component.ts │ ├── helpers │ │ └── url-endpoints.ts │ ├── index.ts │ ├── models │ │ ├── TutorResponsePayload.ts │ │ ├── department-array-repsponse-payload.ts │ │ ├── department-entity.ts │ │ ├── department-response-payload.ts │ │ ├── form-control-with-extra-info-entity.ts │ │ ├── general-response-payload.ts │ │ ├── period-or-lecture.ts │ │ ├── programme-day.ts │ │ ├── programme-group-array-response-payload.ts │ │ ├── programme-group-entity.ts │ │ ├── programme-group-personal-time-table-entity.ts │ │ ├── programme-group-response-payload.ts │ │ ├── subject-allocation-array-response-payload.ts │ │ ├── subject-allocation-entity.ts │ │ ├── subject-entity-with-extra-info.ts │ │ ├── subject-entity.ts │ │ ├── subject-response-payload.ts │ │ ├── subjects-array-default-response-payload.ts │ │ ├── subjects-array-response-payload.ts │ │ ├── time-table-generation-request.ts │ │ ├── time-table-main-entity-array-response-payload.ts │ │ ├── time-table-main-entity-response-payload.ts │ │ ├── time-table-main-entity.ts │ │ ├── tutor-personal-time-table-entity.ts │ │ ├── tutor-subject-id-and-programme-codes-list-obj.ts │ │ └── tutors-array-response-payload.ts │ ├── services │ │ ├── department.service.spec.ts │ │ ├── department.service.ts │ │ ├── programme-group-filtration.service.spec.ts │ │ ├── programme-group-filtration.service.ts │ │ ├── programme-group.service.spec.ts │ │ ├── programme-group.service.ts │ │ ├── subject-allocation.service.spec.ts │ │ ├── subject-allocation.service.ts │ │ ├── subject-filtration.service.spec.ts │ │ ├── subject-filtration.service.ts │ │ ├── subject.service.spec.ts │ │ ├── subject.service.ts │ │ ├── time-table-generation.service.spec.ts │ │ ├── time-table-generation.service.ts │ │ ├── tutor-filtration.service.spec.ts │ │ ├── tutor-filtration.service.ts │ │ ├── tutor.service.spec.ts │ │ └── tutor.service.ts │ └── shared │ │ └── index.ts ├── assets │ ├── .gitkeep │ ├── .npmignore │ ├── css │ │ ├── animate.css │ │ ├── colors │ │ │ ├── blue.css │ │ │ └── default.css │ │ ├── ng2-select.css │ │ ├── spinners.css │ │ └── style.css │ ├── images │ │ ├── eliteadmin-logo-dark.png │ │ ├── eliteadmin-text-dark.png │ │ ├── error-bg.jpg │ │ ├── favicon.png │ │ ├── login-register.jpg │ │ └── users │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── arijit.jpg │ │ │ ├── genu.jpg │ │ │ ├── govinda.jpg │ │ │ ├── hritik.jpg │ │ │ ├── john.jpg │ │ │ ├── pawandeep.jpg │ │ │ ├── ritesh.jpg │ │ │ ├── salman.jpg │ │ │ ├── sonu.jpg │ │ │ └── varun.jpg │ ├── js │ │ ├── custom.js │ │ ├── jquery.slimscroll.js │ │ ├── styleswitcher │ │ │ └── jquery.style.switcher.js │ │ └── waves.js │ └── less │ │ └── icons │ │ ├── font-awesome │ │ └── fonts │ │ │ ├── fontawesome-webfont3295.eot │ │ │ ├── fontawesome-webfont3295.svg │ │ │ ├── fontawesome-webfont3295.ttf │ │ │ ├── fontawesome-webfont3295.woff │ │ │ ├── fontawesome-webfont3295.woff2 │ │ │ └── fontawesome-webfontd41d.eot │ │ ├── linea-icons │ │ └── fonts │ │ │ ├── linea-arrows-10.eot │ │ │ ├── linea-arrows-10.svg │ │ │ ├── linea-arrows-10.ttf │ │ │ ├── linea-arrows-10.woff │ │ │ ├── linea-arrows-10d41d.eot │ │ │ ├── linea-basic-10.eot │ │ │ ├── linea-basic-10.svg │ │ │ ├── linea-basic-10.ttf │ │ │ ├── linea-basic-10.woff │ │ │ ├── linea-basic-10d41d.eot │ │ │ ├── linea-basic-elaboration-10.eot │ │ │ ├── linea-basic-elaboration-10.svg │ │ │ ├── linea-basic-elaboration-10.ttf │ │ │ ├── linea-basic-elaboration-10.woff │ │ │ ├── linea-basic-elaboration-10d41d.eot │ │ │ ├── linea-ecommerce-10.eot │ │ │ ├── linea-ecommerce-10.svg │ │ │ ├── linea-ecommerce-10.ttf │ │ │ ├── linea-ecommerce-10.woff │ │ │ ├── linea-ecommerce-10d41d.eot │ │ │ ├── linea-music-10.eot │ │ │ ├── linea-music-10.svg │ │ │ ├── linea-music-10.ttf │ │ │ ├── linea-music-10.woff │ │ │ ├── linea-music-10d41d.eot │ │ │ ├── linea-software-10.eot │ │ │ ├── linea-software-10.svg │ │ │ ├── linea-software-10.ttf │ │ │ ├── linea-software-10.woff │ │ │ ├── linea-software-10d41d.eot │ │ │ ├── linea-weather-10.eot │ │ │ ├── linea-weather-10.svg │ │ │ ├── linea-weather-10.ttf │ │ │ ├── linea-weather-10.woff │ │ │ └── linea-weather-10d41d.eot │ │ ├── simple-line-icons │ │ └── fonts │ │ │ ├── Simple-Line-Icons4c82.eot │ │ │ ├── Simple-Line-Icons4c82.svg │ │ │ ├── Simple-Line-Icons4c82.ttf │ │ │ ├── Simple-Line-Icons4c82.woff │ │ │ ├── Simple-Line-Icons4c82.woff2 │ │ │ └── Simple-Line-Iconsd41d.eot │ │ ├── themify-icons │ │ └── fonts │ │ │ ├── themify9f24.eot │ │ │ ├── themify9f24.svg │ │ │ ├── themify9f24.ttf │ │ │ ├── themify9f24.woff │ │ │ └── themifyd41d.eot │ │ └── weather-icons │ │ └── font │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ ├── weathericons-regular-webfont.woff │ │ ├── weathericons-regular-webfont.woff2 │ │ └── weathericons-regular-webfontd41d.eot ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.json └── typings.d.ts └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=Typescript 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/angular-cli.json -------------------------------------------------------------------------------- /descriptiongif/Tutors_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/descriptiongif/Tutors_demo.png -------------------------------------------------------------------------------- /descriptiongif/elite_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/descriptiongif/elite_admin.png -------------------------------------------------------------------------------- /descriptiongif/elite_admin_ng2_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/descriptiongif/elite_admin_ng2_gif.gif -------------------------------------------------------------------------------- /descriptiongif/generated_timetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/descriptiongif/generated_timetable.png -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/error404/error404.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/error404/error404.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/error404/error404.component.html -------------------------------------------------------------------------------- /src/app/components/error404/error404.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/error404/error404.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/error404/error404.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/error404/error404.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/home/home.component.css -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/left-side-bar/left-side-bar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/left-side-bar/left-side-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/left-side-bar/left-side-bar.component.html -------------------------------------------------------------------------------- /src/app/components/left-side-bar/left-side-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/left-side-bar/left-side-bar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/left-side-bar/left-side-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/left-side-bar/left-side-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department-tutor-assignment/department-tutor-assignment.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/department/department.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department/department.component.css -------------------------------------------------------------------------------- /src/app/components/main-content/department/department.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department/department.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/department/department.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department/department.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/department/department.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/department/department.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/main-content.component.css: -------------------------------------------------------------------------------- 1 | .main-content-background{ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/main-content/main-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/main-content.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/main-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/main-content.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/main-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/main-content.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/programme-group/programme-group.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/programme-group/programme-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/programme-group/programme-group.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/programme-group/programme-group.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/programme-group/programme-group.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/programme-group/programme-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/programme-group/programme-group.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/subject-allocation/subject-allocation.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/subject-allocation/subject-allocation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject-allocation/subject-allocation.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/subject-allocation/subject-allocation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject-allocation/subject-allocation.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/subject-allocation/subject-allocation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject-allocation/subject-allocation.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/subject/subject.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/subject/subject.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject/subject.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/subject/subject.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject/subject.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/subject/subject.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/subject/subject.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table-mgmt/time-table-mgmt.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/time-table/time-table.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table/time-table.component.css -------------------------------------------------------------------------------- /src/app/components/main-content/time-table/time-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table/time-table.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/time-table/time-table.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table/time-table.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/time-table/time-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/time-table/time-table.component.ts -------------------------------------------------------------------------------- /src/app/components/main-content/tutor/tutor.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main-content/tutor/tutor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/tutor/tutor.component.html -------------------------------------------------------------------------------- /src/app/components/main-content/tutor/tutor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/tutor/tutor.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-content/tutor/tutor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/main-content/tutor/tutor.component.ts -------------------------------------------------------------------------------- /src/app/components/top-navigation-bar/top-navigation-bar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/top-navigation-bar/top-navigation-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/top-navigation-bar/top-navigation-bar.component.html -------------------------------------------------------------------------------- /src/app/components/top-navigation-bar/top-navigation-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/top-navigation-bar/top-navigation-bar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/top-navigation-bar/top-navigation-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/components/top-navigation-bar/top-navigation-bar.component.ts -------------------------------------------------------------------------------- /src/app/helpers/url-endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/helpers/url-endpoints.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/index.ts -------------------------------------------------------------------------------- /src/app/models/TutorResponsePayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/TutorResponsePayload.ts -------------------------------------------------------------------------------- /src/app/models/department-array-repsponse-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/department-array-repsponse-payload.ts -------------------------------------------------------------------------------- /src/app/models/department-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/department-entity.ts -------------------------------------------------------------------------------- /src/app/models/department-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/department-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/form-control-with-extra-info-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/form-control-with-extra-info-entity.ts -------------------------------------------------------------------------------- /src/app/models/general-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/general-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/period-or-lecture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/period-or-lecture.ts -------------------------------------------------------------------------------- /src/app/models/programme-day.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/programme-day.ts -------------------------------------------------------------------------------- /src/app/models/programme-group-array-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/programme-group-array-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/programme-group-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/programme-group-entity.ts -------------------------------------------------------------------------------- /src/app/models/programme-group-personal-time-table-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/programme-group-personal-time-table-entity.ts -------------------------------------------------------------------------------- /src/app/models/programme-group-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/programme-group-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/subject-allocation-array-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subject-allocation-array-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/subject-allocation-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subject-allocation-entity.ts -------------------------------------------------------------------------------- /src/app/models/subject-entity-with-extra-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subject-entity-with-extra-info.ts -------------------------------------------------------------------------------- /src/app/models/subject-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subject-entity.ts -------------------------------------------------------------------------------- /src/app/models/subject-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subject-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/subjects-array-default-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subjects-array-default-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/subjects-array-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/subjects-array-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/time-table-generation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/time-table-generation-request.ts -------------------------------------------------------------------------------- /src/app/models/time-table-main-entity-array-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/time-table-main-entity-array-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/time-table-main-entity-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/time-table-main-entity-response-payload.ts -------------------------------------------------------------------------------- /src/app/models/time-table-main-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/time-table-main-entity.ts -------------------------------------------------------------------------------- /src/app/models/tutor-personal-time-table-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/tutor-personal-time-table-entity.ts -------------------------------------------------------------------------------- /src/app/models/tutor-subject-id-and-programme-codes-list-obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/tutor-subject-id-and-programme-codes-list-obj.ts -------------------------------------------------------------------------------- /src/app/models/tutors-array-response-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/models/tutors-array-response-payload.ts -------------------------------------------------------------------------------- /src/app/services/department.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/department.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/department.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/department.service.ts -------------------------------------------------------------------------------- /src/app/services/programme-group-filtration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/programme-group-filtration.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/programme-group-filtration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/programme-group-filtration.service.ts -------------------------------------------------------------------------------- /src/app/services/programme-group.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/programme-group.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/programme-group.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/programme-group.service.ts -------------------------------------------------------------------------------- /src/app/services/subject-allocation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject-allocation.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/subject-allocation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject-allocation.service.ts -------------------------------------------------------------------------------- /src/app/services/subject-filtration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject-filtration.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/subject-filtration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject-filtration.service.ts -------------------------------------------------------------------------------- /src/app/services/subject.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/subject.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/subject.service.ts -------------------------------------------------------------------------------- /src/app/services/time-table-generation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/time-table-generation.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/time-table-generation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/time-table-generation.service.ts -------------------------------------------------------------------------------- /src/app/services/tutor-filtration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/tutor-filtration.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/tutor-filtration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/tutor-filtration.service.ts -------------------------------------------------------------------------------- /src/app/services/tutor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/tutor.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/tutor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/app/services/tutor.service.ts -------------------------------------------------------------------------------- /src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/animate.css -------------------------------------------------------------------------------- /src/assets/css/colors/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/colors/blue.css -------------------------------------------------------------------------------- /src/assets/css/colors/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/colors/default.css -------------------------------------------------------------------------------- /src/assets/css/ng2-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/ng2-select.css -------------------------------------------------------------------------------- /src/assets/css/spinners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/spinners.css -------------------------------------------------------------------------------- /src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/css/style.css -------------------------------------------------------------------------------- /src/assets/images/eliteadmin-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/eliteadmin-logo-dark.png -------------------------------------------------------------------------------- /src/assets/images/eliteadmin-text-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/eliteadmin-text-dark.png -------------------------------------------------------------------------------- /src/assets/images/error-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/error-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/favicon.png -------------------------------------------------------------------------------- /src/assets/images/login-register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/login-register.jpg -------------------------------------------------------------------------------- /src/assets/images/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/1.jpg -------------------------------------------------------------------------------- /src/assets/images/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/2.jpg -------------------------------------------------------------------------------- /src/assets/images/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/3.jpg -------------------------------------------------------------------------------- /src/assets/images/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/4.jpg -------------------------------------------------------------------------------- /src/assets/images/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/5.jpg -------------------------------------------------------------------------------- /src/assets/images/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/6.jpg -------------------------------------------------------------------------------- /src/assets/images/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/7.jpg -------------------------------------------------------------------------------- /src/assets/images/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/8.jpg -------------------------------------------------------------------------------- /src/assets/images/users/arijit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/arijit.jpg -------------------------------------------------------------------------------- /src/assets/images/users/genu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/genu.jpg -------------------------------------------------------------------------------- /src/assets/images/users/govinda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/govinda.jpg -------------------------------------------------------------------------------- /src/assets/images/users/hritik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/hritik.jpg -------------------------------------------------------------------------------- /src/assets/images/users/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/john.jpg -------------------------------------------------------------------------------- /src/assets/images/users/pawandeep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/pawandeep.jpg -------------------------------------------------------------------------------- /src/assets/images/users/ritesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/ritesh.jpg -------------------------------------------------------------------------------- /src/assets/images/users/salman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/salman.jpg -------------------------------------------------------------------------------- /src/assets/images/users/sonu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/sonu.jpg -------------------------------------------------------------------------------- /src/assets/images/users/varun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/images/users/varun.jpg -------------------------------------------------------------------------------- /src/assets/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/js/custom.js -------------------------------------------------------------------------------- /src/assets/js/jquery.slimscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/js/jquery.slimscroll.js -------------------------------------------------------------------------------- /src/assets/js/styleswitcher/jquery.style.switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/js/styleswitcher/jquery.style.switcher.js -------------------------------------------------------------------------------- /src/assets/js/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/js/waves.js -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.eot -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.svg -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.woff -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfont3295.woff2 -------------------------------------------------------------------------------- /src/assets/less/icons/font-awesome/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/font-awesome/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-arrows-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-arrows-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-arrows-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-arrows-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-arrows-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-arrows-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-arrows-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-arrows-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-arrows-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-arrows-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-music-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-music-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-music-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-music-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-music-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-music-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-music-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-music-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-music-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-music-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-software-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-software-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-software-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-software-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-software-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-software-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-software-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-software-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-software-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-software-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-weather-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-weather-10.eot -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-weather-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-weather-10.svg -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-weather-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-weather-10.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-weather-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-weather-10.woff -------------------------------------------------------------------------------- /src/assets/less/icons/linea-icons/fonts/linea-weather-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/linea-icons/fonts/linea-weather-10d41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.svg -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2 -------------------------------------------------------------------------------- /src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/themify-icons/fonts/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/themify-icons/fonts/themify9f24.eot -------------------------------------------------------------------------------- /src/assets/less/icons/themify-icons/fonts/themify9f24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/themify-icons/fonts/themify9f24.svg -------------------------------------------------------------------------------- /src/assets/less/icons/themify-icons/fonts/themify9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/themify-icons/fonts/themify9f24.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/themify-icons/fonts/themify9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/themify-icons/fonts/themify9f24.woff -------------------------------------------------------------------------------- /src/assets/less/icons/themify-icons/fonts/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/themify-icons/fonts/themifyd41d.eot -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.svg -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/less/icons/weather-icons/font/weathericons-regular-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/assets/less/icons/weather-icons/font/weathericons-regular-webfontd41d.eot -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RbkGh/TimeTableGeneratorWebApp/HEAD/tslint.json --------------------------------------------------------------------------------