├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.js ├── configs └── permission.js ├── configurations ├── generator.py └── template ├── ecosystem.config.js ├── events ├── registered-events.js ├── sys-err-warn.js └── test-event.js ├── frontend ├── app │ ├── application.js │ ├── components │ │ ├── action-text │ │ │ ├── action-text.component.js │ │ │ └── view.html │ │ ├── loading-indicator │ │ │ ├── loading-indicator.component.js │ │ │ └── view.html │ │ └── semester │ │ │ ├── semester.component.js │ │ │ └── view.html │ ├── directives │ │ ├── clickConfirm.js │ │ └── highcharts.js │ ├── filters │ │ └── range.js │ ├── modules │ │ ├── access-denied │ │ │ ├── access-denied.controller.js │ │ │ └── view.html │ │ ├── administration │ │ │ └── users │ │ │ │ ├── Role.html │ │ │ │ ├── admin-users.controller.js │ │ │ │ ├── roles.controller.js │ │ │ │ └── view.html │ │ ├── facebook-support │ │ │ ├── facebook-support.js │ │ │ └── view.html │ │ ├── feedback-send │ │ │ ├── feedback-send.controller.js │ │ │ └── view.html │ │ ├── feedback-view │ │ │ ├── feedback-send.controller.js │ │ │ └── view.html │ │ ├── loading-mask │ │ │ ├── loading-mask.controller.js │ │ │ ├── loading-mask.service.js │ │ │ └── view.html │ │ ├── login │ │ │ ├── login-controller.js │ │ │ └── view.html │ │ ├── notification-center │ │ │ ├── notification-template.controller.js │ │ │ ├── notification.html │ │ │ ├── partials │ │ │ │ ├── error.html │ │ │ │ ├── info.html │ │ │ │ ├── success.html │ │ │ │ └── warn.html │ │ │ └── view.html │ │ ├── notification-settings │ │ │ ├── notification-settings.controller.js │ │ │ └── view.html │ │ ├── notification-system │ │ │ └── notification-system.controller.js │ │ ├── page-header │ │ │ ├── page-header.controller.js │ │ │ ├── partials │ │ │ │ ├── main-search.html │ │ │ │ ├── mobile-search.html │ │ │ │ ├── navigation-indicator.html │ │ │ │ └── sidebar.html │ │ │ └── view.html │ │ ├── privacy │ │ │ ├── privacy-controller.js │ │ │ └── view.html │ │ ├── profile-page │ │ │ ├── partials │ │ │ │ └── subject-stats.html │ │ │ ├── profile-page-controller.js │ │ │ ├── subject-stats.controller.js │ │ │ └── view.html │ │ ├── public-profile-setup │ │ │ ├── public-profile-setup-controller.js │ │ │ └── view.html │ │ ├── public-profile │ │ │ ├── partials │ │ │ │ └── subject-stats.html │ │ │ ├── public-profile-controller.js │ │ │ └── view.html │ │ ├── registration │ │ │ ├── partials │ │ │ │ ├── admins.html │ │ │ │ ├── state-blocked.html │ │ │ │ ├── state-pending.html │ │ │ │ ├── step-1.html │ │ │ │ ├── step-2.html │ │ │ │ ├── step-3.html │ │ │ │ ├── step-4.html │ │ │ │ └── steps-box.html │ │ │ ├── registration-controller.js │ │ │ └── view.html │ │ ├── sample │ │ │ ├── partials │ │ │ │ └── notification-center.html │ │ │ ├── sample-controller.js │ │ │ └── view.html │ │ ├── system │ │ │ ├── partials │ │ │ │ ├── backup.html │ │ │ │ ├── results.html │ │ │ │ └── system.html │ │ │ ├── system-controller.js │ │ │ └── view.html │ │ └── virtual-console │ │ │ ├── partials │ │ │ └── logview.html │ │ │ ├── view-file.controller.js │ │ │ ├── view.html │ │ │ └── virtual-console-controller.js │ ├── route.js │ └── services │ │ ├── admin-service.service.js │ │ ├── api-client.service.js │ │ ├── application-service.service.js │ │ ├── facebook.service.js │ │ ├── profile-service.service.js │ │ ├── socket.js │ │ └── virtual-console.service.js ├── gulpfile.js └── scss │ ├── components │ ├── action-text.scss │ └── loading-indicator.scss │ ├── generic.scss │ ├── modules │ ├── admin │ │ └── members.scss │ ├── facebook-support.scss │ ├── loading-mask.scss │ ├── login.scss │ ├── main-page.scss │ ├── main-search.scss │ ├── maintenance-page.scss │ ├── navigation-indicator.scss │ ├── not-found.scss │ ├── notification-settings.scss │ ├── notification-system.scss │ ├── page-header.scss │ ├── privacy.scss │ ├── profile-page.scss │ ├── public-profile-setup.scss │ ├── public-profile.scss │ ├── registration.scss │ ├── send-feedback-page.scss │ ├── sidebar.scss │ ├── view-feedback-page.scss │ └── virtual-console.scss │ ├── styles.scss │ └── variables.scss ├── index.js ├── modules ├── api-hit-counter.js ├── configurations.js ├── credentials.js ├── database.js ├── events.js ├── facebook-page.js ├── facebook.js ├── messenger.js ├── permissions.js ├── postman.js └── utilities.js ├── npm-shrinkwrap.json ├── package.json ├── privacy.txt ├── public ├── html-ssd │ └── modules │ │ ├── dashboard │ │ └── view.html │ │ └── login │ │ └── view.html └── img │ ├── background.svg │ ├── default_user.png │ ├── favicon.ico │ ├── lock.png │ ├── maintenance.png │ ├── messenger-intro.svg │ ├── not_found.png │ ├── ssd-favicon.ico │ ├── ucsc.jpg │ ├── whileloopbanner.jpg │ └── wl_logo_small.png ├── routes ├── admin │ ├── admin.js │ ├── alerts │ │ └── alerts.js │ ├── calculate │ │ └── calculate.js │ ├── console │ │ └── console.js │ ├── monitoring │ │ └── monitoring.js │ ├── result │ │ └── result.js │ ├── system │ │ └── system.js │ └── users │ │ └── users.js ├── alerts │ └── alerts.js ├── api-v1.js ├── feedback │ └── feedback.js ├── notifications │ └── notification-settings.js ├── profile │ └── profile.js ├── public.js ├── search │ └── search.js ├── statistics.js ├── statistics │ └── statistics.js ├── user.js └── webhook │ ├── fb-webhook.js │ ├── messenger-api.js │ └── messenger-user.js ├── sql ├── create_schema.sql ├── function_accessControl.sql ├── function_isBest.sql ├── migrations │ ├── migration_001.sql │ ├── migration_002.sql │ ├── migration_003.sql │ ├── migration_004.sql │ ├── migration_005.sql │ ├── migration_006.sql │ ├── migration_007.sql │ ├── migration_test.sql │ └── run ├── procedure_subjectwise_stat.sql └── trigger_updateOverallGPA.sql ├── stat-daemon ├── frontend │ ├── app │ │ ├── aa-ssd-app.js │ │ ├── modules │ │ │ ├── dashboard │ │ │ │ ├── dashboard.controller.js │ │ │ │ └── view.html │ │ │ └── login │ │ │ │ ├── login.controller.js │ │ │ │ └── view.html │ │ └── route.js │ ├── gulpfile.js │ └── scss │ │ ├── generic.scss │ │ ├── modules │ │ ├── dashboard.scss │ │ └── login.scss │ │ └── styles.scss ├── modules │ └── system.js ├── stat-daemon.js └── statdaemon.config.js ├── system ├── backup.py ├── converter.py ├── downloader.py ├── httpserver.py ├── logger.py ├── main.py ├── manualParse.py ├── parser.py ├── reporter.py └── resultcenter.py └── templates ├── emails ├── request-approved.ejs └── request-rejected.ejs └── web ├── activation.html ├── index.html ├── maintenance.ejs ├── not-found.html ├── pm2status.ejs ├── ssd-index.html └── test.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/app.js -------------------------------------------------------------------------------- /configs/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/configs/permission.js -------------------------------------------------------------------------------- /configurations/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/configurations/generator.py -------------------------------------------------------------------------------- /configurations/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/configurations/template -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /events/registered-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/events/registered-events.js -------------------------------------------------------------------------------- /events/sys-err-warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/events/sys-err-warn.js -------------------------------------------------------------------------------- /events/test-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/events/test-event.js -------------------------------------------------------------------------------- /frontend/app/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/application.js -------------------------------------------------------------------------------- /frontend/app/components/action-text/action-text.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/action-text/action-text.component.js -------------------------------------------------------------------------------- /frontend/app/components/action-text/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/action-text/view.html -------------------------------------------------------------------------------- /frontend/app/components/loading-indicator/loading-indicator.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/loading-indicator/loading-indicator.component.js -------------------------------------------------------------------------------- /frontend/app/components/loading-indicator/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/loading-indicator/view.html -------------------------------------------------------------------------------- /frontend/app/components/semester/semester.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/semester/semester.component.js -------------------------------------------------------------------------------- /frontend/app/components/semester/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/components/semester/view.html -------------------------------------------------------------------------------- /frontend/app/directives/clickConfirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/directives/clickConfirm.js -------------------------------------------------------------------------------- /frontend/app/directives/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/directives/highcharts.js -------------------------------------------------------------------------------- /frontend/app/filters/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/filters/range.js -------------------------------------------------------------------------------- /frontend/app/modules/access-denied/access-denied.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/access-denied/access-denied.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/access-denied/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/access-denied/view.html -------------------------------------------------------------------------------- /frontend/app/modules/administration/users/Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/administration/users/Role.html -------------------------------------------------------------------------------- /frontend/app/modules/administration/users/admin-users.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/administration/users/admin-users.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/administration/users/roles.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/administration/users/roles.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/administration/users/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/administration/users/view.html -------------------------------------------------------------------------------- /frontend/app/modules/facebook-support/facebook-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/facebook-support/facebook-support.js -------------------------------------------------------------------------------- /frontend/app/modules/facebook-support/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/facebook-support/view.html -------------------------------------------------------------------------------- /frontend/app/modules/feedback-send/feedback-send.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/feedback-send/feedback-send.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/feedback-send/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/feedback-send/view.html -------------------------------------------------------------------------------- /frontend/app/modules/feedback-view/feedback-send.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/feedback-view/feedback-send.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/feedback-view/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/feedback-view/view.html -------------------------------------------------------------------------------- /frontend/app/modules/loading-mask/loading-mask.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/loading-mask/loading-mask.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/loading-mask/loading-mask.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/loading-mask/loading-mask.service.js -------------------------------------------------------------------------------- /frontend/app/modules/loading-mask/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/loading-mask/view.html -------------------------------------------------------------------------------- /frontend/app/modules/login/login-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/login/login-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/login/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/login/view.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/notification-template.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/notification-template.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/notification.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/partials/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/partials/error.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/partials/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/partials/info.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/partials/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/partials/success.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/partials/warn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/partials/warn.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-center/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-center/view.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-settings/notification-settings.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-settings/notification-settings.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/notification-settings/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-settings/view.html -------------------------------------------------------------------------------- /frontend/app/modules/notification-system/notification-system.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/notification-system/notification-system.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/page-header/page-header.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/page-header.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/page-header/partials/main-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/partials/main-search.html -------------------------------------------------------------------------------- /frontend/app/modules/page-header/partials/mobile-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/partials/mobile-search.html -------------------------------------------------------------------------------- /frontend/app/modules/page-header/partials/navigation-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/partials/navigation-indicator.html -------------------------------------------------------------------------------- /frontend/app/modules/page-header/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/partials/sidebar.html -------------------------------------------------------------------------------- /frontend/app/modules/page-header/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/page-header/view.html -------------------------------------------------------------------------------- /frontend/app/modules/privacy/privacy-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/privacy/privacy-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/privacy/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/privacy/view.html -------------------------------------------------------------------------------- /frontend/app/modules/profile-page/partials/subject-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/profile-page/partials/subject-stats.html -------------------------------------------------------------------------------- /frontend/app/modules/profile-page/profile-page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/profile-page/profile-page-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/profile-page/subject-stats.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/profile-page/subject-stats.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/profile-page/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/profile-page/view.html -------------------------------------------------------------------------------- /frontend/app/modules/public-profile-setup/public-profile-setup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/public-profile-setup/public-profile-setup-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/public-profile-setup/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/public-profile-setup/view.html -------------------------------------------------------------------------------- /frontend/app/modules/public-profile/partials/subject-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/public-profile/partials/subject-stats.html -------------------------------------------------------------------------------- /frontend/app/modules/public-profile/public-profile-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/public-profile/public-profile-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/public-profile/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/public-profile/view.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/admins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/admins.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/state-blocked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/state-blocked.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/state-pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/state-pending.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/step-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/step-1.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/step-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/step-2.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/step-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/step-3.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/step-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/step-4.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/partials/steps-box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/partials/steps-box.html -------------------------------------------------------------------------------- /frontend/app/modules/registration/registration-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/registration-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/registration/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/registration/view.html -------------------------------------------------------------------------------- /frontend/app/modules/sample/partials/notification-center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/sample/partials/notification-center.html -------------------------------------------------------------------------------- /frontend/app/modules/sample/sample-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/sample/sample-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/sample/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/sample/view.html -------------------------------------------------------------------------------- /frontend/app/modules/system/partials/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/system/partials/backup.html -------------------------------------------------------------------------------- /frontend/app/modules/system/partials/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/system/partials/results.html -------------------------------------------------------------------------------- /frontend/app/modules/system/partials/system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/system/partials/system.html -------------------------------------------------------------------------------- /frontend/app/modules/system/system-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/system/system-controller.js -------------------------------------------------------------------------------- /frontend/app/modules/system/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/system/view.html -------------------------------------------------------------------------------- /frontend/app/modules/virtual-console/partials/logview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/virtual-console/partials/logview.html -------------------------------------------------------------------------------- /frontend/app/modules/virtual-console/view-file.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/virtual-console/view-file.controller.js -------------------------------------------------------------------------------- /frontend/app/modules/virtual-console/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/virtual-console/view.html -------------------------------------------------------------------------------- /frontend/app/modules/virtual-console/virtual-console-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/modules/virtual-console/virtual-console-controller.js -------------------------------------------------------------------------------- /frontend/app/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/route.js -------------------------------------------------------------------------------- /frontend/app/services/admin-service.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/admin-service.service.js -------------------------------------------------------------------------------- /frontend/app/services/api-client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/api-client.service.js -------------------------------------------------------------------------------- /frontend/app/services/application-service.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/application-service.service.js -------------------------------------------------------------------------------- /frontend/app/services/facebook.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/facebook.service.js -------------------------------------------------------------------------------- /frontend/app/services/profile-service.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/profile-service.service.js -------------------------------------------------------------------------------- /frontend/app/services/socket.js: -------------------------------------------------------------------------------- 1 | const socket = io(); -------------------------------------------------------------------------------- /frontend/app/services/virtual-console.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/app/services/virtual-console.service.js -------------------------------------------------------------------------------- /frontend/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/gulpfile.js -------------------------------------------------------------------------------- /frontend/scss/components/action-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/components/action-text.scss -------------------------------------------------------------------------------- /frontend/scss/components/loading-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/components/loading-indicator.scss -------------------------------------------------------------------------------- /frontend/scss/generic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/generic.scss -------------------------------------------------------------------------------- /frontend/scss/modules/admin/members.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/admin/members.scss -------------------------------------------------------------------------------- /frontend/scss/modules/facebook-support.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/facebook-support.scss -------------------------------------------------------------------------------- /frontend/scss/modules/loading-mask.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/loading-mask.scss -------------------------------------------------------------------------------- /frontend/scss/modules/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/login.scss -------------------------------------------------------------------------------- /frontend/scss/modules/main-page.scss: -------------------------------------------------------------------------------- 1 | #routeView { 2 | padding-top: 60px; 3 | } -------------------------------------------------------------------------------- /frontend/scss/modules/main-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/main-search.scss -------------------------------------------------------------------------------- /frontend/scss/modules/maintenance-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/maintenance-page.scss -------------------------------------------------------------------------------- /frontend/scss/modules/navigation-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/navigation-indicator.scss -------------------------------------------------------------------------------- /frontend/scss/modules/not-found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/not-found.scss -------------------------------------------------------------------------------- /frontend/scss/modules/notification-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/notification-settings.scss -------------------------------------------------------------------------------- /frontend/scss/modules/notification-system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/notification-system.scss -------------------------------------------------------------------------------- /frontend/scss/modules/page-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/page-header.scss -------------------------------------------------------------------------------- /frontend/scss/modules/privacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/privacy.scss -------------------------------------------------------------------------------- /frontend/scss/modules/profile-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/profile-page.scss -------------------------------------------------------------------------------- /frontend/scss/modules/public-profile-setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/public-profile-setup.scss -------------------------------------------------------------------------------- /frontend/scss/modules/public-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/public-profile.scss -------------------------------------------------------------------------------- /frontend/scss/modules/registration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/registration.scss -------------------------------------------------------------------------------- /frontend/scss/modules/send-feedback-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/send-feedback-page.scss -------------------------------------------------------------------------------- /frontend/scss/modules/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/sidebar.scss -------------------------------------------------------------------------------- /frontend/scss/modules/view-feedback-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/view-feedback-page.scss -------------------------------------------------------------------------------- /frontend/scss/modules/virtual-console.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/modules/virtual-console.scss -------------------------------------------------------------------------------- /frontend/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/styles.scss -------------------------------------------------------------------------------- /frontend/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/frontend/scss/variables.scss -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/index.js -------------------------------------------------------------------------------- /modules/api-hit-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/api-hit-counter.js -------------------------------------------------------------------------------- /modules/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/configurations.js -------------------------------------------------------------------------------- /modules/credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/credentials.js -------------------------------------------------------------------------------- /modules/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/database.js -------------------------------------------------------------------------------- /modules/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/events.js -------------------------------------------------------------------------------- /modules/facebook-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/facebook-page.js -------------------------------------------------------------------------------- /modules/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/facebook.js -------------------------------------------------------------------------------- /modules/messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/messenger.js -------------------------------------------------------------------------------- /modules/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/permissions.js -------------------------------------------------------------------------------- /modules/postman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/postman.js -------------------------------------------------------------------------------- /modules/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/modules/utilities.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/package.json -------------------------------------------------------------------------------- /privacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/privacy.txt -------------------------------------------------------------------------------- /public/html-ssd/modules/dashboard/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/html-ssd/modules/dashboard/view.html -------------------------------------------------------------------------------- /public/html-ssd/modules/login/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/html-ssd/modules/login/view.html -------------------------------------------------------------------------------- /public/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/background.svg -------------------------------------------------------------------------------- /public/img/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/default_user.png -------------------------------------------------------------------------------- /public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/favicon.ico -------------------------------------------------------------------------------- /public/img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/lock.png -------------------------------------------------------------------------------- /public/img/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/maintenance.png -------------------------------------------------------------------------------- /public/img/messenger-intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/messenger-intro.svg -------------------------------------------------------------------------------- /public/img/not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/not_found.png -------------------------------------------------------------------------------- /public/img/ssd-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/ssd-favicon.ico -------------------------------------------------------------------------------- /public/img/ucsc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/ucsc.jpg -------------------------------------------------------------------------------- /public/img/whileloopbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/whileloopbanner.jpg -------------------------------------------------------------------------------- /public/img/wl_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/public/img/wl_logo_small.png -------------------------------------------------------------------------------- /routes/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/admin.js -------------------------------------------------------------------------------- /routes/admin/alerts/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/alerts/alerts.js -------------------------------------------------------------------------------- /routes/admin/calculate/calculate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/calculate/calculate.js -------------------------------------------------------------------------------- /routes/admin/console/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/console/console.js -------------------------------------------------------------------------------- /routes/admin/monitoring/monitoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/monitoring/monitoring.js -------------------------------------------------------------------------------- /routes/admin/result/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/result/result.js -------------------------------------------------------------------------------- /routes/admin/system/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/system/system.js -------------------------------------------------------------------------------- /routes/admin/users/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/admin/users/users.js -------------------------------------------------------------------------------- /routes/alerts/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/alerts/alerts.js -------------------------------------------------------------------------------- /routes/api-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/api-v1.js -------------------------------------------------------------------------------- /routes/feedback/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/feedback/feedback.js -------------------------------------------------------------------------------- /routes/notifications/notification-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/notifications/notification-settings.js -------------------------------------------------------------------------------- /routes/profile/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/profile/profile.js -------------------------------------------------------------------------------- /routes/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/public.js -------------------------------------------------------------------------------- /routes/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/search/search.js -------------------------------------------------------------------------------- /routes/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/statistics.js -------------------------------------------------------------------------------- /routes/statistics/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/statistics/statistics.js -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/user.js -------------------------------------------------------------------------------- /routes/webhook/fb-webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/webhook/fb-webhook.js -------------------------------------------------------------------------------- /routes/webhook/messenger-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/webhook/messenger-api.js -------------------------------------------------------------------------------- /routes/webhook/messenger-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/routes/webhook/messenger-user.js -------------------------------------------------------------------------------- /sql/create_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/create_schema.sql -------------------------------------------------------------------------------- /sql/function_accessControl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/function_accessControl.sql -------------------------------------------------------------------------------- /sql/function_isBest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/function_isBest.sql -------------------------------------------------------------------------------- /sql/migrations/migration_001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_001.sql -------------------------------------------------------------------------------- /sql/migrations/migration_002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_002.sql -------------------------------------------------------------------------------- /sql/migrations/migration_003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_003.sql -------------------------------------------------------------------------------- /sql/migrations/migration_004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_004.sql -------------------------------------------------------------------------------- /sql/migrations/migration_005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_005.sql -------------------------------------------------------------------------------- /sql/migrations/migration_006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/migration_006.sql -------------------------------------------------------------------------------- /sql/migrations/migration_007.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `undergraduate` 2 | ADD COLUMN `public_api` VARCHAR(50) NULL AFTER `privacy`; -------------------------------------------------------------------------------- /sql/migrations/migration_test.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM `facebook` WHERE `fname` = "Sulochana"; -------------------------------------------------------------------------------- /sql/migrations/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/migrations/run -------------------------------------------------------------------------------- /sql/procedure_subjectwise_stat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/procedure_subjectwise_stat.sql -------------------------------------------------------------------------------- /sql/trigger_updateOverallGPA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/sql/trigger_updateOverallGPA.sql -------------------------------------------------------------------------------- /stat-daemon/frontend/app/aa-ssd-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/aa-ssd-app.js -------------------------------------------------------------------------------- /stat-daemon/frontend/app/modules/dashboard/dashboard.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/modules/dashboard/dashboard.controller.js -------------------------------------------------------------------------------- /stat-daemon/frontend/app/modules/dashboard/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/modules/dashboard/view.html -------------------------------------------------------------------------------- /stat-daemon/frontend/app/modules/login/login.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/modules/login/login.controller.js -------------------------------------------------------------------------------- /stat-daemon/frontend/app/modules/login/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/modules/login/view.html -------------------------------------------------------------------------------- /stat-daemon/frontend/app/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/app/route.js -------------------------------------------------------------------------------- /stat-daemon/frontend/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/gulpfile.js -------------------------------------------------------------------------------- /stat-daemon/frontend/scss/generic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/scss/generic.scss -------------------------------------------------------------------------------- /stat-daemon/frontend/scss/modules/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/scss/modules/dashboard.scss -------------------------------------------------------------------------------- /stat-daemon/frontend/scss/modules/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/scss/modules/login.scss -------------------------------------------------------------------------------- /stat-daemon/frontend/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/frontend/scss/styles.scss -------------------------------------------------------------------------------- /stat-daemon/modules/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/modules/system.js -------------------------------------------------------------------------------- /stat-daemon/stat-daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/stat-daemon.js -------------------------------------------------------------------------------- /stat-daemon/statdaemon.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/stat-daemon/statdaemon.config.js -------------------------------------------------------------------------------- /system/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/backup.py -------------------------------------------------------------------------------- /system/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/converter.py -------------------------------------------------------------------------------- /system/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/downloader.py -------------------------------------------------------------------------------- /system/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/httpserver.py -------------------------------------------------------------------------------- /system/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/logger.py -------------------------------------------------------------------------------- /system/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/main.py -------------------------------------------------------------------------------- /system/manualParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/manualParse.py -------------------------------------------------------------------------------- /system/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/parser.py -------------------------------------------------------------------------------- /system/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/reporter.py -------------------------------------------------------------------------------- /system/resultcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/system/resultcenter.py -------------------------------------------------------------------------------- /templates/emails/request-approved.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/emails/request-approved.ejs -------------------------------------------------------------------------------- /templates/emails/request-rejected.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/emails/request-rejected.ejs -------------------------------------------------------------------------------- /templates/web/activation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/activation.html -------------------------------------------------------------------------------- /templates/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/index.html -------------------------------------------------------------------------------- /templates/web/maintenance.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/maintenance.ejs -------------------------------------------------------------------------------- /templates/web/not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/not-found.html -------------------------------------------------------------------------------- /templates/web/pm2status.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/pm2status.ejs -------------------------------------------------------------------------------- /templates/web/ssd-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/ssd-index.html -------------------------------------------------------------------------------- /templates/web/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamwhileloop/ucsc-results-center/HEAD/templates/web/test.html --------------------------------------------------------------------------------