aboutsummaryrefslogtreecommitdiff
path: root/static (unfollow)
Commit message (Collapse)Author
2022-06-12Handle error for user-additions salar.Hugo Hörnquist
The script crashes just as before, but now we get slightly better error messages.
2022-06-12Follow all instances of tagName with toLowerCase.Hugo Hörnquist
A HTML document returns tag names as upper case, while xml documents return them as lower case (or possibly their original case).
2022-06-11Add number of TODO's.Hugo Hörnquist
2022-06-11Update today-button to not depend on initial content.Hugo Hörnquist
Depending on initial content is fragile. This instead constructs a completely new tag, discarding what happened to be there before.
2022-06-11Move clock component initialization to procedure.Hugo Hörnquist
When the document was renederd as HTML the connectedCallback:s were ran before the document was there, meaning that the initial content of the tags were missing. This gives us controll over when its ran, and here also ensures that it's ran once the document is there.
2022-04-25Remove arbitary_kv.js.Hugo Hörnquist
The file has been bit-rotting since the move to typescript, and even so, was far from done or working. However, the generall idea of having free-form editing at the end of the edit fields is a good idea, which maybe should be revisited in the future.
2022-04-25Minor cleanup.Hugo Hörnquist
2022-04-25Scheme and js now finds HTML in text with same regex.Hugo Hörnquist
2022-04-24Change user-additions HTML detection.Hugo Hörnquist
2022-04-24Minor dependency fixup in static/Makefile.Hugo Hörnquist
2022-04-24Dead code removal.Hugo Hörnquist
2022-04-23Introduce component date-jump.Hugo Hörnquist
2022-04-23Scroll-behavior: smooth for siderbar.Hugo Hörnquist
This make scrolling to event visually apparent (mostly used when JavaScript is disabled).
2022-04-23Repair and rewrote sliders in HTML.Hugo Hörnquist
The old ones where broken since i accidentally removed setVar, instead of reintrocuding that, I rewrote slider-inputs as web components, which frees us of having some hacky javascript in the html code.
2022-04-12Fix edit popups not auto opening.Hugo Hörnquist
Depending an the exact text of an translatable string seems like a bad idea.
2022-04-05Remove innerHTML from user-additions.js.Hugo Hörnquist
2022-04-05Made sidebar date headings sticky.Hugo Hörnquist
2022-04-05Fix rrule:s in frontend being parsed incorrectly.Hugo Hörnquist
2022-03-30Handle XML entities slightly better in user-additions.js.Hugo Hörnquist
2022-03-28Introduce directory-listing.scssHugo Hörnquist
2022-03-15Add JS user config for hyperlinking locations at LiU.Hugo Hörnquist
This is rather specific to me, but we already have the president with the bundled config.scm file.
2022-03-15Introduce user-additions in frontend.Hugo Hörnquist
Along with an initial example of their use.
2022-03-15Introduce concept of VEvent formatters in frontend.Hugo Hörnquist
2022-03-15Add alt make-watch for static in existing TMUX sessions.Hugo Hörnquist
2022-03-15Popup created events now don't take seconds.Hugo Hörnquist
2022-03-07Cleanup makefile.Hugo Hörnquist
2021-12-13Made VEventComponent template optional.Hugo Hörnquist
2021-12-12Merge draggable into popup-element.Hugo Hörnquist
2021-12-12Correctly show recur indicator.Hugo Hörnquist
2021-12-10Add create event button!Hugo Hörnquist
2021-12-10Broke out setup of popup on event creation.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-10Repair event position in week.Hugo Hörnquist
2021-12-10Repair <date-time-input/>Hugo Hörnquist
2021-12-10Popup maximize now procedure.Hugo Hörnquist
2021-12-10Add various type specifiers.Hugo Hörnquist
2021-12-10Flip static/.gitignore.Hugo Hörnquist
2021-12-10Remove binders.js.Hugo Hörnquist
2021-12-10Major move from week to calendar meta-view. Also repairs month view.Hugo Hörnquist
2021-12-10Only focus searchbox on '/' when sensible.Hugo Hörnquist
2021-12-10Remove popup.ts, migrating all functionality elsewhere.Hugo Hörnquist
The simple procedures - close_popup - open_popup - toggle_popup - find_popup Were mostly here for legacy. The procedures - popup_from_event - event_from_popup where holdovers from the old way of finding popups, and should be done through the VEvent objects now. close_all_popups was used only once, so the code was moved inline. Finally, moving the last hovered over popup to the top, along with tab switch keybings were restored, and moved to propper places.
2021-12-10Remove vcal.js.Hugo Hörnquist
2021-12-10Close popup on event creation.Hugo Hörnquist
2021-12-10Better handling of popup visibility.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-09CSS to prevent event blocks from overflowing.Hugo Hörnquist
2021-12-07Add fullscreen button to popups.Hugo Hörnquist
2021-12-02Add basic changelog viewHugo Hörnquist
2021-11-30Remove jcal-tests.jsHugo Hörnquist
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.
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!