├── .dockerignore ├── .github ├── dangerfile.ts ├── lint-requirements.txt ├── pull_request_template.md └── workflows │ ├── backend-workflow.yml │ ├── danger-workflow.yml │ ├── deploy-workflow.yml │ ├── frontend-workflow.yml │ ├── scrape-depts-workflow.yml │ └── scrape-grades-workflow.yml ├── .gitignore ├── .pylintrc ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── project-demo.gif ├── autoscheduler ├── .gcloudignore ├── app.yaml ├── autoscheduler │ ├── README.md │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ └── config.py │ ├── middleware │ │ ├── __init__.py │ │ └── logging_middleware.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ └── docker.py │ ├── urls.py │ └── wsgi.py ├── discord_bot.py ├── feedback │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── feedback_form_response.py │ ├── tests │ │ ├── __init__.py │ │ └── api_tests.py │ ├── urls.py │ └── views.py ├── frontend │ ├── README.md │ ├── __init__.py │ ├── apps.py │ ├── assets │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── banner.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.svg │ │ ├── logo.png │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── mstile-70x70.png │ │ ├── safari-pinned-tab.svg │ │ ├── site.webmanifest │ │ └── webmanifest-cors-fix.json │ ├── migrations │ │ └── __init__.py │ ├── src │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── babel.config.js │ │ ├── components │ │ │ ├── App │ │ │ │ ├── App.css │ │ │ │ ├── App.css.d.ts │ │ │ │ └── App.tsx │ │ │ ├── DialogWithClose │ │ │ │ ├── DialogWithClose.css │ │ │ │ ├── DialogWithClose.css.d.ts │ │ │ │ └── DialogWithClose.tsx │ │ │ ├── GenericCard │ │ │ │ ├── GenericCard.css │ │ │ │ ├── GenericCard.css.d.ts │ │ │ │ └── GenericCard.tsx │ │ │ ├── GenericSnackbar.tsx │ │ │ ├── Icons │ │ │ │ ├── GoogleIcon.jpg │ │ │ │ └── HonorsIcon │ │ │ │ │ └── HonorsIcon.tsx │ │ │ ├── LandingPage │ │ │ │ ├── About │ │ │ │ │ ├── About.css │ │ │ │ │ ├── About.css.d.ts │ │ │ │ │ └── About.tsx │ │ │ │ ├── HelpText │ │ │ │ │ └── HelpText.tsx │ │ │ │ ├── InfoDialog │ │ │ │ │ ├── InfoDialog.css │ │ │ │ │ ├── InfoDialog.css.d.ts │ │ │ │ │ └── InfoDialog.tsx │ │ │ │ ├── LandingPage.css │ │ │ │ ├── LandingPage.css.d.ts │ │ │ │ ├── LandingPage.tsx │ │ │ │ ├── PrivacyPolicy │ │ │ │ │ └── PrivacyPolicy.tsx │ │ │ │ └── SelectTerm │ │ │ │ │ ├── NavBarSelectTerm.css │ │ │ │ │ ├── NavBarSelectTerm.css.d.ts │ │ │ │ │ ├── SelectTerm.css │ │ │ │ │ ├── SelectTerm.css.d.ts │ │ │ │ │ └── SelectTerm.tsx │ │ │ ├── LargeTextCard │ │ │ │ ├── LargeTextCard.css │ │ │ │ ├── LargeTextCard.css.d.ts │ │ │ │ └── LargeTextCard.tsx │ │ │ ├── LastUpdatedAt.tsx │ │ │ ├── NavBar │ │ │ │ ├── FeedbackForm │ │ │ │ │ ├── FeedbackForm.css │ │ │ │ │ ├── FeedbackForm.css.d.ts │ │ │ │ │ ├── FeedbackForm.tsx │ │ │ │ │ └── Rating │ │ │ │ │ │ └── Rating.tsx │ │ │ │ ├── LoginButton.tsx │ │ │ │ ├── NavBar.css │ │ │ │ ├── NavBar.css.d.ts │ │ │ │ ├── NavBar.tsx │ │ │ │ └── reloadPage.tsx │ │ │ ├── SchedulingPage │ │ │ │ ├── CourseSelectColumn │ │ │ │ │ ├── CourseSelectCard │ │ │ │ │ │ ├── CourseSelectCard.tsx │ │ │ │ │ │ └── ExpandedCourseCard │ │ │ │ │ │ │ ├── ExpandedCourseCard.css │ │ │ │ │ │ │ ├── ExpandedCourseCard.css.d.ts │ │ │ │ │ │ │ └── SectionSelect │ │ │ │ │ │ │ ├── BasicCheckbox.tsx │ │ │ │ │ │ │ ├── BasicOptionRow.tsx │ │ │ │ │ │ │ ├── GradeDist │ │ │ │ │ │ │ ├── GradeDist.css │ │ │ │ │ │ │ ├── GradeDist.css.d.ts │ │ │ │ │ │ │ └── GradeDist.tsx │ │ │ │ │ │ │ ├── MeetingType │ │ │ │ │ │ │ └── MeetingTypeDisplay.tsx │ │ │ │ │ │ │ ├── ProfessorGroup.tsx │ │ │ │ │ │ │ ├── SectionAttributeIcons │ │ │ │ │ │ │ ├── SectionAttributeIcons.css │ │ │ │ │ │ │ ├── SectionAttributeIcons.css.d.ts │ │ │ │ │ │ │ └── SectionAttributeIcons.tsx │ │ │ │ │ │ │ ├── SectionInfo.tsx │ │ │ │ │ │ │ ├── SectionSelect.css │ │ │ │ │ │ │ ├── SectionSelect.css.d.ts │ │ │ │ │ │ │ └── SectionSelect.tsx │ │ │ │ │ ├── CourseSelectColumn.css │ │ │ │ │ ├── CourseSelectColumn.css.d.ts │ │ │ │ │ └── CourseSelectColumn.tsx │ │ │ │ ├── GenerateSchedulesButton │ │ │ │ │ ├── GenerateSchedulesButton.css │ │ │ │ │ ├── GenerateSchedulesButton.css.d.ts │ │ │ │ │ ├── GenerateSchedulesButton.tsx │ │ │ │ │ └── generateSchedulesMock.ts │ │ │ │ ├── Schedule │ │ │ │ │ ├── AvailabilityCard │ │ │ │ │ │ ├── AvailabilityCard.css │ │ │ │ │ │ ├── AvailabilityCard.css.d.ts │ │ │ │ │ │ └── AvailabilityCard.tsx │ │ │ │ │ ├── HoveredTime │ │ │ │ │ │ ├── HoveredTime.css │ │ │ │ │ │ ├── HoveredTime.css.d.ts │ │ │ │ │ │ └── HoveredTime.tsx │ │ │ │ │ ├── InstructionsDialog │ │ │ │ │ │ ├── InstructionsDialog.css │ │ │ │ │ │ ├── InstructionsDialog.css.d.ts │ │ │ │ │ │ └── InstructionsDialog.tsx │ │ │ │ │ ├── MeetingCard │ │ │ │ │ │ ├── MeetingCard.css │ │ │ │ │ │ ├── MeetingCard.css.d.ts │ │ │ │ │ │ └── MeetingCard.tsx │ │ │ │ │ ├── Schedule.css │ │ │ │ │ ├── Schedule.css.d.ts │ │ │ │ │ ├── Schedule.tsx │ │ │ │ │ ├── ScheduleCard │ │ │ │ │ │ ├── DragHandle.tsx │ │ │ │ │ │ ├── ScheduleCard.css │ │ │ │ │ │ ├── ScheduleCard.css.d.ts │ │ │ │ │ │ └── ScheduleCard.tsx │ │ │ │ │ └── meetingColors.ts │ │ │ │ ├── SchedulePreview │ │ │ │ │ ├── ScheduleDetails │ │ │ │ │ │ ├── CRNDisplay │ │ │ │ │ │ │ └── CRNDisplay.tsx │ │ │ │ │ │ ├── ScheduleDetails.css │ │ │ │ │ │ ├── ScheduleDetails.css.d.ts │ │ │ │ │ │ └── ScheduleDetails.tsx │ │ │ │ │ ├── ScheduleListItem │ │ │ │ │ │ ├── Buttons │ │ │ │ │ │ │ ├── DeleteScheduleButton.tsx │ │ │ │ │ │ │ ├── LockScheduleButton.tsx │ │ │ │ │ │ │ └── ScheduleName.tsx │ │ │ │ │ │ ├── ColorBox.tsx │ │ │ │ │ │ ├── MiniSchedule │ │ │ │ │ │ │ ├── MiniSchedule.css │ │ │ │ │ │ │ ├── MiniSchedule.css.d.ts │ │ │ │ │ │ │ └── MiniSchedule.tsx │ │ │ │ │ │ └── ScheduleListItem.tsx │ │ │ │ │ ├── SchedulePreview.css │ │ │ │ │ ├── SchedulePreview.css.d.ts │ │ │ │ │ └── SchedulePreview.tsx │ │ │ │ ├── SchedulingPage.css │ │ │ │ ├── SchedulingPage.css.d.ts │ │ │ │ └── SchedulingPage.tsx │ │ │ ├── SmallFastProgress.tsx │ │ │ └── UnknownRoutePage │ │ │ │ ├── UnknownRoutePage.css │ │ │ │ ├── UnknownRoutePage.css.d.ts │ │ │ │ └── UnknownRoutePage.tsx │ │ ├── globals.ts │ │ ├── hooks │ │ │ ├── useDimensions.ts │ │ │ ├── useForceRender.ts │ │ │ └── useThunkDispatch.ts │ │ ├── index.tsx │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── redux │ │ │ ├── actions │ │ │ │ ├── availability.ts │ │ │ │ ├── availabilityMode.ts │ │ │ │ ├── courseCards.ts │ │ │ │ ├── fullscreen.ts │ │ │ │ ├── meetings.ts │ │ │ │ ├── schedules.ts │ │ │ │ ├── selectedAvailability.ts │ │ │ │ ├── selectedSchedule.ts │ │ │ │ ├── term.ts │ │ │ │ └── termData.ts │ │ │ ├── reducer.ts │ │ │ ├── reducers │ │ │ │ ├── availability.ts │ │ │ │ ├── availabilityMode.ts │ │ │ │ ├── courseCards.ts │ │ │ │ ├── fullscreen.ts │ │ │ │ ├── meetings.ts │ │ │ │ ├── schedules.ts │ │ │ │ ├── selectedAvailability.ts │ │ │ │ ├── selectedSchedule.ts │ │ │ │ ├── term.ts │ │ │ │ └── termData.ts │ │ │ └── testData.ts │ │ ├── tests │ │ │ ├── redux │ │ │ │ ├── Availability.test.ts │ │ │ │ ├── CourseCards.test.ts │ │ │ │ ├── Redux.test.ts │ │ │ │ ├── Schedule.test.ts │ │ │ │ ├── SchedulingPage.test.ts │ │ │ │ └── Term.test.ts │ │ │ ├── testData.ts │ │ │ ├── testSchedules.ts │ │ │ ├── types │ │ │ │ ├── Availability.test.ts │ │ │ │ ├── Course.test.ts │ │ │ │ ├── Grades.test.ts │ │ │ │ ├── Instructor.test.ts │ │ │ │ ├── Meeting.test.ts │ │ │ │ └── Section.test.ts │ │ │ ├── ui │ │ │ │ ├── About.test.tsx │ │ │ │ ├── App.test.tsx │ │ │ │ ├── Availability.test.tsx │ │ │ │ ├── AvailabilityMultiDay.test.tsx │ │ │ │ ├── CRNDisplay.test.tsx │ │ │ │ ├── CourseSelectCard.test.tsx │ │ │ │ ├── CourseSelectColumn.test.tsx │ │ │ │ ├── FeedbackForm.test.tsx │ │ │ │ ├── GenerateSchedulesButton.test.tsx │ │ │ │ ├── GradeDist.test.tsx │ │ │ │ ├── LandingPage.test.tsx │ │ │ │ ├── LastUpdatedAt.test.tsx │ │ │ │ ├── MeetingCard.test.tsx │ │ │ │ ├── NavBar.test.tsx │ │ │ │ ├── ProfessorGroup.test.tsx │ │ │ │ ├── Schedule.test.tsx │ │ │ │ ├── SchedulePreview.test.tsx │ │ │ │ ├── SchedulingPage.test.tsx │ │ │ │ ├── SectionSelect.test.tsx │ │ │ │ └── SelectTerm.test.tsx │ │ │ ├── util.ts │ │ │ └── utilTests │ │ │ │ ├── hoursForSchedule.test.ts │ │ │ │ └── hoursForSection.test.ts │ │ ├── theme.ts │ │ ├── tsconfig.json │ │ ├── types │ │ │ ├── APIRequests.ts │ │ │ ├── APIResponses.ts │ │ │ ├── Availability.ts │ │ │ ├── Contributors.ts │ │ │ ├── Course.ts │ │ │ ├── CourseCardOptions.ts │ │ │ ├── DayOfWeek.ts │ │ │ ├── Grades.ts │ │ │ ├── Instructor.ts │ │ │ ├── Meeting.ts │ │ │ ├── Schedule.ts │ │ │ ├── Section.ts │ │ │ └── TermData.ts │ │ ├── utils │ │ │ ├── createThrottleFunction.ts │ │ │ ├── filterSections.tsx │ │ │ ├── formatMeetingDays.ts │ │ │ ├── ga.d.ts │ │ │ ├── ga.js │ │ │ ├── hoursForSchedule.ts │ │ │ ├── hoursForSection.ts │ │ │ ├── html2canvas.d.ts │ │ │ ├── html2canvas.js │ │ │ ├── meetingBuilding.ts │ │ │ ├── meetingTimeText.ts │ │ │ ├── meetingsForSchedule.ts │ │ │ ├── meetingsForSection.ts │ │ │ ├── saveDataURL.ts │ │ │ ├── sectionsForSchedule.ts │ │ │ ├── sortMeetingFunction.tsx │ │ │ └── timeUtil.ts │ │ └── webpack.config.js │ ├── templates │ │ └── index.html │ ├── urls.py │ └── views.py ├── main.py ├── manage.py ├── pytest.ini ├── requirements.txt ├── scheduler │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── create_schedules.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── scheduling.py │ ├── migrations │ │ └── __init__.py │ ├── models │ │ └── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── api_tests.py │ │ ├── scheduling_tests.py │ │ └── util_tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── scraper │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── banner_requests.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── fill_terms.py │ │ │ ├── scrape_courses.py │ │ │ ├── scrape_depts.py │ │ │ ├── scrape_grades.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── pdf_helper.py │ │ │ ├── pdf_parser.py │ │ │ └── scraper_utils.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200421_2215.py │ │ ├── 0003_auto_20200502_1327.py │ │ ├── 0004_section_asynchronous.py │ │ ├── 0005_auto_20201026_1519.py │ │ ├── 0006_auto_20201104_1439.py │ │ ├── 0007_auto_20201111_1735.py │ │ ├── 0008_term.py │ │ ├── 0009_auto_20210801_1054.py │ │ ├── 0009_meeting_room.py │ │ ├── 0009_section_mcallen.py │ │ ├── 0010_auto_20210614_1411.py │ │ ├── 0011_merge_20210912_1231.py │ │ ├── 0012_merge_20211116_1843.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── course.py │ │ ├── department.py │ │ ├── grades.py │ │ ├── instructor.py │ │ ├── section.py │ │ └── term.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── aio_test_case.py │ │ ├── api_tests.py │ │ ├── banner_requests_tests.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── pdf_parser_tests.py │ │ │ ├── scrape_courses_tests.py │ │ │ ├── scrape_depts_tests.py │ │ │ ├── scrape_grades_tests.py │ │ │ └── scraper_utils_tests.py │ │ ├── data │ │ │ ├── depts_input.json │ │ │ ├── grd20153MD.pdf │ │ │ ├── grd20191AP.pdf │ │ │ └── section_input.json │ │ ├── last_updated_api_tests.py │ │ ├── models_tests.py │ │ └── utils │ │ │ └── load_json.py │ ├── urls.py │ └── views.py └── user_sessions │ ├── __init__.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models │ ├── __init__.py │ └── user_to_data_session.py │ ├── tests │ ├── __init__.py │ ├── courses_api_tests.py │ ├── name_api_tests.py │ ├── retrieve_data_session_tests.py │ ├── schedules_api_tests.py │ └── term_api_tests.py │ ├── urls.py │ ├── utils │ └── retrieve_data_session.py │ └── views.py ├── config ├── django_key ├── postgres_password └── postgres_username ├── docker-compose.yml ├── docker-entrypoint.sh ├── docker ├── cloud-sql-proxy-cred-file │ └── Dockerfile ├── run-migrations │ ├── Dockerfile │ └── entrypoint.sh ├── scrape-courses │ ├── Dockerfile │ └── entrypoint.sh ├── scrape-depts │ ├── Dockerfile │ └── entrypoint.sh ├── scrape-grades │ ├── Dockerfile │ └── entrypoint.sh └── vm-startup-scripts │ └── scrape-template-script.sh ├── fill_credentials.sh ├── fill_discord_credentials.sh ├── fill_google_auth_credentials.sh └── gcp └── cloud-function-update-scheduler.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dangerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/dangerfile.ts -------------------------------------------------------------------------------- /.github/lint-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/lint-requirements.txt -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/backend-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/backend-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/danger-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/danger-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/deploy-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/frontend-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/scrape-depts-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/scrape-depts-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/scrape-grades-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.github/workflows/scrape-grades-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/.pylintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/README.md -------------------------------------------------------------------------------- /assets/project-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/assets/project-demo.gif -------------------------------------------------------------------------------- /autoscheduler/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/.gcloudignore -------------------------------------------------------------------------------- /autoscheduler/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/app.yaml -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/README.md -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/config/config.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/middleware/__init__.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/middleware/logging_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/middleware/logging_middleware.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/settings/base.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/settings/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/settings/docker.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/urls.py -------------------------------------------------------------------------------- /autoscheduler/autoscheduler/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/autoscheduler/wsgi.py -------------------------------------------------------------------------------- /autoscheduler/discord_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/discord_bot.py -------------------------------------------------------------------------------- /autoscheduler/feedback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/feedback/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/apps.py -------------------------------------------------------------------------------- /autoscheduler/feedback/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/migrations/0001_initial.py -------------------------------------------------------------------------------- /autoscheduler/feedback/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/feedback/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/models/__init__.py -------------------------------------------------------------------------------- /autoscheduler/feedback/models/feedback_form_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/models/feedback_form_response.py -------------------------------------------------------------------------------- /autoscheduler/feedback/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/feedback/tests/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/tests/api_tests.py -------------------------------------------------------------------------------- /autoscheduler/feedback/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/urls.py -------------------------------------------------------------------------------- /autoscheduler/feedback/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/feedback/views.py -------------------------------------------------------------------------------- /autoscheduler/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/README.md -------------------------------------------------------------------------------- /autoscheduler/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/frontend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/apps.py -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/banner.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/browserconfig.xml -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/favicon-16x16.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/favicon-32x32.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/favicon.svg -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/logo.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/mstile-144x144.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/mstile-150x150.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/mstile-310x150.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/mstile-310x310.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/mstile-70x70.png -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/safari-pinned-tab.svg -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/site.webmanifest -------------------------------------------------------------------------------- /autoscheduler/frontend/assets/webmanifest-cors-fix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/assets/webmanifest-cors-fix.json -------------------------------------------------------------------------------- /autoscheduler/frontend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/frontend/src/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.css.d.ts 2 | babel.config.js 3 | -------------------------------------------------------------------------------- /autoscheduler/frontend/src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/.eslintrc.js -------------------------------------------------------------------------------- /autoscheduler/frontend/src/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/babel.config.js -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/App/App.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/App/App.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/App/App.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/App/App.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/DialogWithClose/DialogWithClose.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/GenericCard/GenericCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/GenericCard/GenericCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/GenericCard/GenericCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/GenericCard/GenericCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/GenericCard/GenericCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/GenericCard/GenericCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/GenericSnackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/GenericSnackbar.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/Icons/GoogleIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/Icons/GoogleIcon.jpg -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/Icons/HonorsIcon/HonorsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/Icons/HonorsIcon/HonorsIcon.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/About/About.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/About/About.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/About/About.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/About/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/About/About.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/HelpText/HelpText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/HelpText/HelpText.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/InfoDialog/InfoDialog.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/LandingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/LandingPage.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/LandingPage.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/LandingPage.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/LandingPage.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/PrivacyPolicy/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/PrivacyPolicy/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/SelectTerm/NavBarSelectTerm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/SelectTerm/NavBarSelectTerm.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/SelectTerm/NavBarSelectTerm.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/SelectTerm/NavBarSelectTerm.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LandingPage/SelectTerm/SelectTerm.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LargeTextCard/LargeTextCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/LastUpdatedAt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/LastUpdatedAt.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/FeedbackForm/FeedbackForm.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/FeedbackForm/Rating/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/FeedbackForm/Rating/Rating.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/LoginButton.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/NavBar.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/NavBar.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/NavBar.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/NavBar/reloadPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/NavBar/reloadPage.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/CourseSelectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/CourseSelectCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/ExpandedCourseCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/ExpandedCourseCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/ExpandedCourseCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/ExpandedCourseCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/BasicCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/BasicCheckbox.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/BasicOptionRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/BasicOptionRow.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/GradeDist/GradeDist.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/MeetingType/MeetingTypeDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/MeetingType/MeetingTypeDisplay.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/ProfessorGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/ProfessorGroup.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionAttributeIcons/SectionAttributeIcons.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionInfo.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectCard/ExpandedCourseCard/SectionSelect/SectionSelect.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/CourseSelectColumn/CourseSelectColumn.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/GenerateSchedulesButton.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/generateSchedulesMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/GenerateSchedulesButton/generateSchedulesMock.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/AvailabilityCard/AvailabilityCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/HoveredTime/HoveredTime.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/InstructionsDialog/InstructionsDialog.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/MeetingCard/MeetingCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/Schedule.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/DragHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/DragHandle.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/ScheduleCard/ScheduleCard.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/Schedule/meetingColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/Schedule/meetingColors.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/CRNDisplay/CRNDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/CRNDisplay/CRNDisplay.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleDetails/ScheduleDetails.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/DeleteScheduleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/DeleteScheduleButton.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/LockScheduleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/LockScheduleButton.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/ScheduleName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/Buttons/ScheduleName.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/ColorBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/ColorBox.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/MiniSchedule/MiniSchedule.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/ScheduleListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/ScheduleListItem/ScheduleListItem.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulePreview/SchedulePreview.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SchedulingPage/SchedulingPage.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/SmallFastProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/SmallFastProgress.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.css -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.css.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/components/UnknownRoutePage/UnknownRoutePage.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/globals.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/hooks/useDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/hooks/useDimensions.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/hooks/useForceRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/hooks/useForceRender.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/hooks/useThunkDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/hooks/useThunkDispatch.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/index.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/jest.config.js -------------------------------------------------------------------------------- /autoscheduler/frontend/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/package-lock.json -------------------------------------------------------------------------------- /autoscheduler/frontend/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/package.json -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/availability.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/availabilityMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/availabilityMode.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/courseCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/courseCards.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/fullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/fullscreen.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/meetings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/meetings.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/schedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/schedules.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/selectedAvailability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/selectedAvailability.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/selectedSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/selectedSchedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/term.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/term.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/actions/termData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/actions/termData.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducer.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/availability.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/availabilityMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/availabilityMode.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/courseCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/courseCards.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/fullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/fullscreen.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/meetings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/meetings.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/schedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/schedules.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/selectedAvailability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/selectedAvailability.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/selectedSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/selectedSchedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/term.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/term.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/reducers/termData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/reducers/termData.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/redux/testData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/redux/testData.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/Availability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/Availability.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/CourseCards.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/CourseCards.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/Redux.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/Redux.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/Schedule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/Schedule.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/SchedulingPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/SchedulingPage.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/redux/Term.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/redux/Term.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/testData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/testData.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/testSchedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/testSchedules.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Availability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Availability.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Course.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Course.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Grades.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Grades.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Instructor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Instructor.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Meeting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Meeting.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/types/Section.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/types/Section.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/About.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/About.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/App.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/Availability.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/Availability.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/AvailabilityMultiDay.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/AvailabilityMultiDay.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/CRNDisplay.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/CRNDisplay.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/CourseSelectCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/CourseSelectCard.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/CourseSelectColumn.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/CourseSelectColumn.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/FeedbackForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/FeedbackForm.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/GenerateSchedulesButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/GenerateSchedulesButton.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/GradeDist.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/GradeDist.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/LandingPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/LandingPage.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/LastUpdatedAt.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/LastUpdatedAt.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/MeetingCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/MeetingCard.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/NavBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/NavBar.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/ProfessorGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/ProfessorGroup.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/Schedule.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/Schedule.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/SchedulePreview.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/SchedulePreview.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/SchedulingPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/SchedulingPage.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/SectionSelect.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/SectionSelect.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/ui/SelectTerm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/ui/SelectTerm.test.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/util.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/utilTests/hoursForSchedule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/utilTests/hoursForSchedule.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tests/utilTests/hoursForSection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tests/utilTests/hoursForSection.test.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/theme.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/tsconfig.json -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/APIRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/APIRequests.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/APIResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/APIResponses.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Availability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Availability.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Contributors.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Course.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Course.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/CourseCardOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/CourseCardOptions.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/DayOfWeek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/DayOfWeek.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Grades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Grades.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Instructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Instructor.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Meeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Meeting.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Schedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/Section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/Section.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/types/TermData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/types/TermData.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/createThrottleFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/createThrottleFunction.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/filterSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/filterSections.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/formatMeetingDays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/formatMeetingDays.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/ga.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/ga.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/ga.js -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/hoursForSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/hoursForSchedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/hoursForSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/hoursForSection.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/html2canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/html2canvas.d.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/html2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/html2canvas.js -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/meetingBuilding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/meetingBuilding.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/meetingTimeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/meetingTimeText.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/meetingsForSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/meetingsForSchedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/meetingsForSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/meetingsForSection.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/saveDataURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/saveDataURL.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/sectionsForSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/sectionsForSchedule.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/sortMeetingFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/sortMeetingFunction.tsx -------------------------------------------------------------------------------- /autoscheduler/frontend/src/utils/timeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/utils/timeUtil.ts -------------------------------------------------------------------------------- /autoscheduler/frontend/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/src/webpack.config.js -------------------------------------------------------------------------------- /autoscheduler/frontend/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/templates/index.html -------------------------------------------------------------------------------- /autoscheduler/frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/urls.py -------------------------------------------------------------------------------- /autoscheduler/frontend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/frontend/views.py -------------------------------------------------------------------------------- /autoscheduler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/main.py -------------------------------------------------------------------------------- /autoscheduler/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/manage.py -------------------------------------------------------------------------------- /autoscheduler/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/pytest.ini -------------------------------------------------------------------------------- /autoscheduler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/requirements.txt -------------------------------------------------------------------------------- /autoscheduler/scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/README.md -------------------------------------------------------------------------------- /autoscheduler/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scheduler/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/admin.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/apps.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/create_schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/create_schedules.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scheduler/management/commands/scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/management/commands/scheduling.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scheduler/models/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /autoscheduler/scheduler/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scheduler/tests/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/tests/api_tests.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/tests/scheduling_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/tests/scheduling_tests.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/tests/util_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/tests/util_tests.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/urls.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/utils.py -------------------------------------------------------------------------------- /autoscheduler/scheduler/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scheduler/views.py -------------------------------------------------------------------------------- /autoscheduler/scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/README.md -------------------------------------------------------------------------------- /autoscheduler/scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/admin.py -------------------------------------------------------------------------------- /autoscheduler/scraper/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/apps.py -------------------------------------------------------------------------------- /autoscheduler/scraper/banner_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/banner_requests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/fill_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/fill_terms.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/scrape_courses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/scrape_courses.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/scrape_depts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/scrape_depts.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/scrape_grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/scrape_grades.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/utils/pdf_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/utils/pdf_helper.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/utils/pdf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/utils/pdf_parser.py -------------------------------------------------------------------------------- /autoscheduler/scraper/management/commands/utils/scraper_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/management/commands/utils/scraper_utils.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0001_initial.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0002_auto_20200421_2215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0002_auto_20200421_2215.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0003_auto_20200502_1327.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0003_auto_20200502_1327.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0004_section_asynchronous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0004_section_asynchronous.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0005_auto_20201026_1519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0005_auto_20201026_1519.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0006_auto_20201104_1439.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0006_auto_20201104_1439.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0007_auto_20201111_1735.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0007_auto_20201111_1735.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0008_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0008_term.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0009_auto_20210801_1054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0009_auto_20210801_1054.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0009_meeting_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0009_meeting_room.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0009_section_mcallen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0009_section_mcallen.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0010_auto_20210614_1411.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0010_auto_20210614_1411.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0011_merge_20210912_1231.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0011_merge_20210912_1231.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/0012_merge_20211116_1843.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/migrations/0012_merge_20211116_1843.py -------------------------------------------------------------------------------- /autoscheduler/scraper/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/__init__.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/course.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/department.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/grades.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/instructor.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/section.py -------------------------------------------------------------------------------- /autoscheduler/scraper/models/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/models/term.py -------------------------------------------------------------------------------- /autoscheduler/scraper/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/serializers.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/aio_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/aio_test_case.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/api_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/banner_requests_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/banner_requests_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/pdf_parser_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/commands/pdf_parser_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/scrape_courses_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/commands/scrape_courses_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/scrape_depts_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/commands/scrape_depts_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/scrape_grades_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/commands/scrape_grades_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/commands/scraper_utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/commands/scraper_utils_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/data/depts_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/data/depts_input.json -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/data/grd20153MD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/data/grd20153MD.pdf -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/data/grd20191AP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/data/grd20191AP.pdf -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/data/section_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/data/section_input.json -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/last_updated_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/last_updated_api_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/models_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/models_tests.py -------------------------------------------------------------------------------- /autoscheduler/scraper/tests/utils/load_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/tests/utils/load_json.py -------------------------------------------------------------------------------- /autoscheduler/scraper/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/urls.py -------------------------------------------------------------------------------- /autoscheduler/scraper/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/scraper/views.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/user_sessions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/migrations/0001_initial.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/user_sessions/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/models/__init__.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/models/user_to_data_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/models/user_to_data_session.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/courses_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/tests/courses_api_tests.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/name_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/tests/name_api_tests.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/retrieve_data_session_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/tests/retrieve_data_session_tests.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/schedules_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/tests/schedules_api_tests.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/tests/term_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/tests/term_api_tests.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/urls.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/utils/retrieve_data_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/utils/retrieve_data_session.py -------------------------------------------------------------------------------- /autoscheduler/user_sessions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/autoscheduler/user_sessions/views.py -------------------------------------------------------------------------------- /config/django_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/config/django_key -------------------------------------------------------------------------------- /config/postgres_password: -------------------------------------------------------------------------------- 1 | postgres -------------------------------------------------------------------------------- /config/postgres_username: -------------------------------------------------------------------------------- 1 | postgres -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/cloud-sql-proxy-cred-file/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/cloud-sql-proxy-cred-file/Dockerfile -------------------------------------------------------------------------------- /docker/run-migrations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/run-migrations/Dockerfile -------------------------------------------------------------------------------- /docker/run-migrations/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/run-migrations/entrypoint.sh -------------------------------------------------------------------------------- /docker/scrape-courses/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-courses/Dockerfile -------------------------------------------------------------------------------- /docker/scrape-courses/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-courses/entrypoint.sh -------------------------------------------------------------------------------- /docker/scrape-depts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-depts/Dockerfile -------------------------------------------------------------------------------- /docker/scrape-depts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-depts/entrypoint.sh -------------------------------------------------------------------------------- /docker/scrape-grades/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-grades/Dockerfile -------------------------------------------------------------------------------- /docker/scrape-grades/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/scrape-grades/entrypoint.sh -------------------------------------------------------------------------------- /docker/vm-startup-scripts/scrape-template-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/docker/vm-startup-scripts/scrape-template-script.sh -------------------------------------------------------------------------------- /fill_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/fill_credentials.sh -------------------------------------------------------------------------------- /fill_discord_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/fill_discord_credentials.sh -------------------------------------------------------------------------------- /fill_google_auth_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/fill_google_auth_credentials.sh -------------------------------------------------------------------------------- /gcp/cloud-function-update-scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aggie-coding-club/Rev-Registration/HEAD/gcp/cloud-function-update-scheduler.js --------------------------------------------------------------------------------