aboutsummaryrefslogtreecommitdiff
path: root/static (unfollow)
Commit message (Collapse)Author
2022-10-24Specify encoding for scss.Hugo Hörnquist
2022-10-17Repair labels in HTML.Hugo Hörnquist
At commit bbecd2476ebddb2731065aad2f3895c5074c9ecb the code changed from generating valid labels backend to generating them frontend. I however forgot to attach the labels to the DOM...
2022-10-16Fix that events where submitted twice.Hugo Hörnquist
2022-10-16Minor cleaup.Hugo Hörnquist
2022-10-16Fix wrongly ordered TODO's.Hugo Hörnquist
2022-09-18Extend user-additions salar to handle multiple locations.Hugo Hörnquist
2022-09-18Repair user-additions salar.Hugo Hörnquist
2022-08-01Minor cleanup in TS files.Hugo Hörnquist
2022-08-01Change JavaScript build system to esbuild.Hugo Hörnquist
Esbuild is way faster, and feels less hacky. One downside is that it doesn't actually check Typescript types. However, typescript can still be installed alongside, and has the fancy --noEmit flag for just this situation.
2022-08-01Static should create its own directories when installing.Hugo Hörnquist
2022-08-01make clean in static shouldn't fail if the file isn't there.Hugo Hörnquist
2022-07-10Change JS formatters interface.Hugo Hörnquist
Now the application of formatters are centralized. It also allowed me to easily suround stuff in try-catch, since I otherwise had problems with formatters failing, and nothing showing up.
2022-07-07JS user addition for parsing Microsoft Teams links.Hugo Hörnquist
2022-07-07Extend javascript formatters to also take VEvent.Hugo Hörnquist
2022-06-16Change to proper javascript privates.Hugo Hörnquist
2022-06-16Add TODO about CSS foreground color.Hugo Hörnquist
2022-06-16Move CSS background-color to body element.Hugo Hörnquist
This ensures it applies to the entire page. Previously the parts of .root which overflowed lacked the background.
2022-06-13Replace some .tagName with instanceof.Hugo Hörnquist
2022-06-13Ensure datetime gets set for generated time tags.Hugo Hörnquist
2022-06-12Stop using with-label.Hugo Hörnquist
2022-06-12Change boolean attribute value to itself.Hugo Hörnquist
2022-06-12Change element types for tabs.Hugo Hörnquist
2022-06-12Fix spelling of aria-labelledby.Hugo Hörnquist
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