summaryrefslogtreecommitdiff
path: root/Utility/Scheduled.hs
Commit message (Collapse)AuthorAge
* fix quickcheck rangeGravatar Joey Hess2013-11-01
|
* fix handling of schedled time of 12 PMGravatar Joey Hess2013-11-01
|
* test suite found a case that was not properly parsedGravatar Joey Hess2013-10-16
|
* add support for weekly, monthly, and yearly schedules that run on no ↵Gravatar Joey Hess2013-10-15
| | | | specific day
* improve calculation of nextTime for AnyTime eventsGravatar Joey Hess2013-10-13
| | | | | | Allow AnyTime events that still have time to occur in the current day to fall in a window covering the current day, instead of waiting until the next day in the Recurrance.
* better time displayGravatar Joey Hess2013-10-11
|
* 0 pad minutesGravatar Joey Hess2013-10-10
|
* remove duration from ScheduleGravatar Joey Hess2013-10-08
|
* half way complete cronner thread to run scheduled activitiesGravatar Joey Hess2013-10-08
|
* refactorGravatar Joey Hess2013-10-07
|
* comment typoGravatar Joey Hess2013-10-07
|
* calculating the next time on a ScheduleGravatar Joey Hess2013-10-07
| | | | | | | | | Wow! This was hairy, but about 10x less hairy than expected actually! A bit more recursion than I really like, since I think in theory all of this date stuff can be calulated using some formulas I am too lazy too look up. But this doesn't matter in practice; I asked it for nextTime (Schedule (Divisible 100 (Yearly 7)) (SpecificTime 23 59) (MinutesDuration 10)) Nothing .. and it calculated (NextTimeExactly 2100-01-07 23:59:00) in milliseconds.
* better recurrance formattingGravatar Joey Hess2013-10-07
|
* add schedule to vicfgGravatar Joey Hess2013-10-07
|
* quickcheck schedule parsingGravatar Joey Hess2013-10-07
| | | | soo many arbitrary instances, so little time!
* basic data types for scheduled activitiesGravatar Joey Hess2013-10-07
Rather similar to crontab, although with a different format. But with less emphasis on per-minute scheduling. Also, supports weekly events, which cron makes too hard. Also, has a duration field.