You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned VikeLabs/courseup#220, topic courses have their titles not in the calendar. We didn't initially scrape this as we assumed the title would be the same. Clearly this assumption was wrong.
Add a title attribute to the respective types/interfaces. and add the parser code in the appropriate files (likely under the src/pages/courseListingEntries and src/pages/detailedClassInformation within the extractor function already there.
Parsing the title should not contain extra info like the CRN etc. The example of this in action would be:
Before Parsing:
TOPICS:SOFTWARE ENGINEER: Quantum Algorithms and Software Engineering - 32729 - SENG 480C - A01
Parsed:
TOPICS:SOFTWARE ENGINEER: Quantum Algorithms and Software Engineering
The text was updated successfully, but these errors were encountered:
… page and Details Course Info page. (#137)
* Fix: Hours can have a 'or' in them
* Updated fix
* updated chenges after review
* update formatting
* updated catalog.ts
* extract course title in detailedClassInformation
* fix missing tests for detailClassInformation
* fixing failing tests
* fix initialization for title
As mentioned VikeLabs/courseup#220, topic courses have their titles not in the calendar. We didn't initially scrape this as we assumed the title would be the same. Clearly this assumption was wrong.
Add a
title
attribute to the respective types/interfaces. and add the parser code in the appropriate files (likely under thesrc/pages/courseListingEntries
andsrc/pages/detailedClassInformation
within the extractor function already there.Parsing the title should not contain extra info like the CRN etc. The example of this in action would be:
Before Parsing:
Parsed:
The text was updated successfully, but these errors were encountered: