-
Notifications
You must be signed in to change notification settings - Fork 38
Generate one ical event for meetings instead of one per weekday #339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate one ical event for meetings instead of one per weekday #339
Conversation
Updated the generateIcal() function. 1. Updated the code that gets the starting date of the course, to use the weekday number of the term start date. This way if the term starts on a day other than Monday, it'll still correctly generate the start day of the course., 2. Added code that'll generate a single series for a multiday course (Mon,Web,Fri for example) to simplify calendars. If any details are different between the different times (different location or times, for example) it'll fallback to the old code that makes separate series for each listed time in the course.
Updated the generateIcal() function: 1. Updated the code that gets the starting date of the course, to use the weekday number of the term start date. This way if the term starts on a day other than Monday, it'll still correctly generate the start day of the course., 2. Added code that'll generate a single series for a multiday course (Mon,Web,Fri for example) to simplify calendars. If any details are different between the different times (different location or times, for example) it'll fallback to the old code that makes separate series for each listed time in the course.
Please fix merge conflicts |
Merge conflicts should be resolved now. |
Hm. The diff still doesn't look right. Try rebasing against develop? |
Updated the generateIcal() function. 1. Updated the code that gets the starting date of the course, to use the weekday number of the term start date. This way if the term starts on a day other than Monday, it'll still correctly generate the start day of the course., 2. Added code that'll generate a single series for a multiday course (Mon,Web,Fri for example) to simplify calendars. If any details are different between the different times (different location or times, for example) it'll fallback to the old code that makes separate series for each listed time in the course.
I ran a rebase again, hopefully that fixes everything |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to see if I can fix this
I apologize for the trouble with this PR. Thank you for your patience, the two comments you left should have been resolved by my latest commit. I'm doing another quality review tonight to ensure the rest of the file is up to snuff. |
superseded by #343 |
Updated the
generateIcal()
function. (Breaking out the multiple changes from #325 into separate PRs for clarity)Added code that'll generate a single series for a multi-day course (Mon,Web,Fri for example) to simplify calendars (see the iCal specification for RRULE). If any details are different between the different times (different location or times, for example) it'll fallback to the old code that makes separate series for each listed time in the course. #63