aboutsummaryrefslogtreecommitdiff
path: root/module (unfollow)
Commit message (Collapse)Author
2021-11-18Remove .interactive, fix date-time checkbox.Hugo Hörnquist
2021-11-15Minor fixes.Hugo Hörnquist
2021-11-15Propagate default-calendar from backend to frontend.Hugo Hörnquist
2021-11-10Handle calendar change through dropdown.Hugo Hörnquist
2021-11-10Calendar colors now handled through html datasets.Hugo Hörnquist
Previously css rules for each calendar (governing color) where handled through CSS classes. This however had the problem that all calendar names needed to be mapped unto valid classnames, and it brought some problems with updating it. This change places the calendar information in the dataset.calendar attribute. It's still base64 encoded, so special characters don't need escaping, and XML doesn't trip up.
2021-11-09Better handle debug tab.Hugo Hörnquist
2021-11-08Comment out x-hnh-calendar-name.Hugo Hörnquist
It caused tests to crash, since it requires that all components have parents (which is obviously false for root components), and that all those parents have a NAME field.
2021-11-08Fix flat event slice for calendars.Hugo Hörnquist
As noted in the fidd, our simple filter-sorted-stream on event-overlaps? missbehaves in some edge cases. The new system "should" work *fingers crossed*.
2021-11-05Start depending on npm.Hugo Hörnquist
Chromium can't handle JavaScript-modules in XHTML-document [1]. The workaround is to use a javascript bundler. Here we start depending on browserify. I evaluated both that and webpack, and browserify seemed to work marginally better with typescript. Unfortunately this also makes us depend on npm, where we unfortunately already are bloatet... $ ls static/node_modules | wc -l 174 [1]: https://bugs.chromium.org/p/chromium/issues/detail?id=717643
2021-10-10Mostly fix datetime values in frontend.Hugo Hörnquist
2021-10-06Drive popup tabs through javascript.Hugo Hörnquist
2021-10-04Major typescript work.Hugo Hörnquist
2021-10-04Work on calendar from event in frontend, broken.Hugo Hörnquist
2021-10-03workHugo Hörnquist
2021-10-03Further work, rework popup.Hugo Hörnquist
2021-10-03Repair debug buttons.Hugo Hörnquist
2021-10-01Reintroduce dateonly for date-time-input:s.Hugo Hörnquist
2021-10-01Remove old date_time system.Hugo Hörnquist
2021-10-01Got date-times working in new system.Hugo Hörnquist
2021-09-30Replace today-button with web component.Hugo Hörnquist
2021-09-29Start rework on js setup.Hugo Hörnquist
2021-08-30Add debug tab to HTML popups.Hugo Hörnquist
2021-08-30Fix minor syntax error for set/r!Hugo Hörnquist
2021-08-24Allow partial change and removal of XML Namespaces.Hugo Hörnquist
Changing the error to a returnu allows a partial namespace change map, which can sometimes be usefull (and should hopefully not lead to any issues here). Changing assoc-ref to assoc allows the removal of namespaces, since assoc-ref can't differentiate between a match with #f in its cdr, and no match. (assoc-ref '((a . #f)) 'a) ⇒ #f (assoc-ref '((a . #f)) 'b) ⇒ #f
2021-08-24Fix warning calls in string->datetime.Hugo Hörnquist
2021-08-21Improve error messages of rfc->datetime-weekdayHugo Hörnquist
2021-08-21Repair BYDAY output for ical serialization.Hugo Hörnquist
I have no idea why the byday case was commented out while implementing xcal output. Either way it's now fixed, and should hopefully stay fixed with some tests.
2021-08-20Make zero-length events be part of day flow.Hugo Hörnquist
Since not all zero-length events are at midnight/doesn't have a time component, they are now placed on the correct position of each day, with a dummy-length of 1 hour.
2021-08-15Refactor read-file to use string ports.Hugo Hörnquist
Like the diff mentions; appending strings leads to a huge number of allocations and deallocations, killing performance in the GC for large strings. String ports on the other hand say nothing about how the work internally, allowing Guile to have efficient C code which completely bypasses the GC (this was briefly checked in Guile's source code, commit 118ee0c50ba90ea7ad7ff1fd2a212bbbb7a66d99 (3.0.7 + a few commits). The approximate speed increase is at least two orders of magnitude, if not three.
2021-08-15Add TODO about bad string-append performance.Hugo Hörnquist
2021-08-15Render attachements to HTML frontend.Hugo Hörnquist
2021-08-15Fix paginator buttons forgetting future clause.Hugo Hörnquist
2021-08-15Fix encode-query-parameters.Hugo Hörnquist
Multiple parameters are now correctly joined by an ampersand. Also noticed that the given parameters should use the regular ->string for encoding strings.
2021-08-10Add comment about "bug" where calendars where missing their names.Hugo Hörnquist
2021-08-10Export vline? from (vcomponent base).Hugo Hörnquist
2021-08-10Add OpenSSL:s SHA256Hugo Hörnquist
2021-08-10HTML calendar list now links to list off all their events.Hugo Hörnquist
2021-08-10Change uri-encode to use ->quoted-string.Hugo Hörnquist
2021-07-19Fix bug where 'base' of event repeated through multiple VEVENT:s would be ↵Hugo Hörnquist
"lost".
2021-06-10Add marker on events with descriptions.Hugo Hörnquist
2021-05-17Add TODO about search formatting.Hugo Hörnquist
2021-05-17Cleanup + fix for wholeday checkbox.Hugo Hörnquist
2021-05-17Rework date-time input to be cleaner + work again.Hugo Hörnquist
2021-05-16Change background when in debug mode.Hugo Hörnquist
2021-05-15Terminal reload events when jumping to today.Hugo Hörnquist
2021-05-11Add week indicator to week screen.Hugo Hörnquist
2021-03-02Start moving vcal stuff to own class.Hugo Hörnquist
2021-02-01Change clear-input icon.Hugo Hörnquist
2021-02-01Limit edit tab to when in edit mode.Hugo Hörnquist
2021-02-01Handle types of xcal rrule.Hugo Hörnquist