aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Better handling of popup visibility.Hugo Hörnquist2021-12-10
| |
| * Propagate recurring events to frontend.Hugo Hörnquist2021-12-09
| | | | | | | | | | | | | | 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.
| * CSS to prevent event blocks from overflowing.Hugo Hörnquist2021-12-09
| |
| * <datetime> no longer crashes.Hugo Hörnquist2021-12-09
| |
| * Deprecate editable-repeat-info, some comments.Hugo Hörnquist2021-12-07
| |
| * Add fullscreen button to popups.Hugo Hörnquist2021-12-07
| |
| * Add delete-{parameter,property}!Hugo Hörnquist2021-12-06
| |
| * Update xcal rrule parser to do as expected.Hugo Hörnquist2021-12-06
| |
| * Add clarifying comments.Hugo Hörnquist2021-12-06
| |
| * Add assoc-ref-all family of procedures.Hugo Hörnquist2021-12-06
| |
| * Formatting fixes in make-block.Hugo Hörnquist2021-12-02
| |
| * Add basic changelog viewHugo Hörnquist2021-12-02
| |
| * Remove jcal-tests.jsHugo Hörnquist2021-11-30
| | | | | | | | | | | | Our singular, badly written, test didn't feel worth the headache to keep around. A proper test suite for most of our fronttound would however be nice.
| * Rework tab system.Hugo Hörnquist2021-11-30
| | | | | | | | | | | | This sepparates popup-elements from their tabbed contents, allowing clearer sepparations of concerns, along with easier adding and removing of tabs to the tabset!
| * Change UID resolve.Hugo Hörnquist2021-11-29
| |
| * Display categories in event description.Hugo Hörnquist2021-11-26
| |
| * Made vevent-dl prettier.Hugo Hörnquist2021-11-26
| |
| * Remove default ComponentVEvent redraw.Hugo Hörnquist2021-11-26
| |
| * Minor cleanup.Hugo Hörnquist2021-11-26
| |
| * Fix datetime becomming dateonly when hitting midnight.Hugo Hörnquist2021-11-26
| |
| * Got categories working.Hugo Hörnquist2021-11-26
| |
| * Slightly better error hnadling in directory-table.Hugo Hörnquist2021-11-22
| |
| * Fix <textarea/> being ignored when editing event.Hugo Hörnquist2021-11-22
| |
| * Change innerHTML to textContent.Hugo Hörnquist2021-11-22
| | | | | | | | Also changed some innerText to textContent
| * Rework popup components.Hugo Hörnquist2021-11-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Add basic rrule tab.Hugo Hörnquist2021-11-19
| |
| * Add input-list custom element.Hugo Hörnquist2021-11-19
| |
| * vevent-dl formats rrules.Hugo Hörnquist2021-11-19
| |
| * Parse RRULE:s.Hugo Hörnquist2021-11-19
| |
| * Change popup tabs interface.Hugo Hörnquist2021-11-18
| |
| * Restore remove event functionality.Hugo Hörnquist2021-11-18
| |
| * Minor fixes.Hugo Hörnquist2021-11-18
| |
| * Add setProperties, add type info to setProperty.Hugo Hörnquist2021-11-18
| |
| * Remove .interactive, fix date-time checkbox.Hugo Hörnquist2021-11-18
| |
| * Various fixes <date-time-input/>Hugo Hörnquist2021-11-18
| |
| * Minor fixes.Hugo Hörnquist2021-11-15
| |
| * Propagate default-calendar from backend to frontend.Hugo Hörnquist2021-11-15
| |
| * Fix calendar for popup.Hugo Hörnquist2021-11-15
| |
| * Reorder some popup setup.Hugo Hörnquist2021-11-15
| |
| * Add HTMLElement.getListeners.Hugo Hörnquist2021-11-15
| |
| * cleanupHugo Hörnquist2021-11-15
| |
| * Rework some drawing and how calendar is accessed.Hugo Hörnquist2021-11-15
| |
| * Reword popup visible attribute.Hugo Hörnquist2021-11-15
| | | | | | | | | | | | Now all logic for handling hiding and showing popups are inside the PopupElement class, making it much harder to do stuff incorrectly. It also slowly releases the knot around popup.ts.
| * Made VIEW and EDIT_MODE correctly global.Hugo Hörnquist2021-11-11
| |
| * Add madge for frontend dep visualization.Hugo Hörnquist2021-11-10
| |
| * Slight frontend makefile improvements.Hugo Hörnquist2021-11-10
| |
| * Re-modularize javascript.Hugo Hörnquist2021-11-10
| | | | | | | | | | This moves almost everything out of globals.ts, into sepparate files. Things are still slightly to tightly coupled. But that is worked on.
| * Basic event modification works again.Hugo Hörnquist2021-11-10
| |
| * Handle calendar change through dropdown.Hugo Hörnquist2021-11-10
| |
| * Calendar colors now handled through html datasets.Hugo Hörnquist2021-11-10
| | | | | | | | | | | | | | | | | | | | | | 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.