aboutsummaryrefslogtreecommitdiff
path: root/module (unfollow)
Commit message (Collapse)Author
2021-12-12Correctly show recur indicator.Hugo Hörnquist
2021-12-12Fix recurring events not being rendered in side listHugo Hörnquist
2021-12-12Fix colors on earlier events in sidebarHugo Hörnquist
2021-12-10Add create event button!Hugo Hörnquist
2021-12-10'.btn' no longer contains div.Hugo Hörnquist
Previously I generated buttons on the form <a><div/></a> & <button><div/></button>, which was invalid for button tags. This removes the inner div, with the only cost being that the hitbox for the button is slightly wonky if pressed at the top left where the button isn't when it's depressed, since I move it.
2021-12-10Remove commented out script includes.Hugo Hörnquist
2021-12-10Repair event position in week.Hugo Hörnquist
2021-12-10Change {start,end}-date to pre-start and post-end.Hugo Hörnquist
pre-start and post-end are the real intervals for a given page, since some more days than requested are often shown to make sense of a given layout.
2021-12-10Major move from week to calendar meta-view. Also repairs month view.Hugo Hörnquist
2021-12-10Major cleanup in calp html.Hugo Hörnquist
2021-12-09Propagate recurring events to frontend.Hugo Hörnquist
This handles each instance of a recurring event as its own unique event, which allows us to properly send it to the frontend. It's currently not possible to submit the repeating events back, but that is probably a underlying problem.
2021-12-09<datetime> no longer crashes.Hugo Hörnquist
2021-12-07Deprecate editable-repeat-info, some comments.Hugo Hörnquist
2021-12-07Add fullscreen button to popups.Hugo Hörnquist
2021-12-06Add delete-{parameter,property}!Hugo Hörnquist
2021-12-06Update xcal rrule parser to do as expected.Hugo Hörnquist
2021-12-06Add clarifying comments.Hugo Hörnquist
2021-12-06Add assoc-ref-all family of procedures.Hugo Hörnquist
2021-12-02Formatting fixes in make-block.Hugo Hörnquist
2021-12-02Add basic changelog viewHugo Hörnquist
2021-11-30Rework tab system.Hugo Hörnquist
This sepparates popup-elements from their tabbed contents, allowing clearer sepparations of concerns, along with easier adding and removing of tabs to the tabset!
2021-11-26Display categories in event description.Hugo Hörnquist
2021-11-26Got categories working.Hugo Hörnquist
2021-11-22Slightly better error hnadling in directory-table.Hugo Hörnquist
2021-11-21Rework popup components.Hugo Hörnquist
Previously popups were driven through some CSS hacks, which used labels with specific positioning, and z-index changes. This never really worked, and led the rest of the tree to be unmanagable. This commit replaces that system with a simpler one, which is being driven by javascript. This also allowed a much simpler tree, which allowed us to - make the popups rezisable (with a resize anchor) - move the window handle to above (configurable) - Add and remove tabs without having manually reflow where all labels are
2021-11-19Add basic rrule tab.Hugo Hörnquist
2021-11-18Change popup tabs interface.Hugo Hörnquist
2021-11-18Restore remove event functionality.Hugo Hörnquist
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