aboutsummaryrefslogtreecommitdiff
path: root/module/calp (follow)
Commit message (Collapse)AuthorAge
* Add /everything.ics endpoint.HEADshowmasterHugo Hörnquist2022-10-24
| | | | | Endpoint returns all events in interval. Used to sync to other calendars.
* Replace root-redirect with propper HTTP 307.Hugo Hörnquist2022-10-24
|
* Minor cleaup.Hugo Hörnquist2022-10-16
|
* Truncate print for spawned repl.Hugo Hörnquist2022-10-16
| | | | | | Having this as the default allows the representation of vcomponents to not contain a newline. Otherwise accidentaly printing everything was a sure fire way to hang emacs.
* Better error handling when submitting events.Hugo Hörnquist2022-10-16
|
* Clean up imports in main.Hugo Hörnquist2022-10-16
|
* Move load-config to own file.Hugo Hörnquist2022-10-16
| | | | | Guile 3 defaults all modules to be declarative, but Guile doesn't support extra args in define-module.
* Change gettext '_' to 'G_'.Hugo Hörnquist2022-10-16
| | | | Guile 3 reserves _ for other stuff.
* Rewrote make-routes to use define-syntax.Hugo Hörnquist2022-09-18
| | | | | This is the first step into adding extra functionallity, since I now want have to worry about how namespace pollution works.
* Change JavaScript build system to esbuild.Hugo Hörnquist2022-08-01
| | | | | | | 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.
* Repair broken styles on search page.Hugo Hörnquist2022-07-25
| | | | Fix to c16c6199.
* Repair search page.Hugo Hörnquist2022-07-25
|
* Remove (add|remove)-day, and month[+-].Hugo Hörnquist2022-06-23
| | | | | Procedures where overly specific, and doing it manually was almost no more work.
* Minor cleanup of entry-points/server.Hugo Hörnquist2022-06-23
|
* Clean up btn.Hugo Hörnquist2022-06-23
|
* Add TODO about query parameters.Hugo Hörnquist2022-06-23
|
* Normalize keyword syntax.Hugo Hörnquist2022-06-23
|
* Remove procedure tabset.Hugo Hörnquist2022-06-23
| | | | | | Tabset gave me a CSS-powered set of tabs. However, tabs are interactive, and I have moved most interaction to JavaScript. Making this procedure obsolete.
* Minor cleanup.Hugo Hörnquist2022-06-23
|
* Centralize (almost) all exports to :export in define-module.Hugo Hörnquist2022-06-23
|
* Remove all inline use-modules.Hugo Hörnquist2022-06-23
|
* Clean up (calp util config).Hugo Hörnquist2022-06-23
| | | | | Introduced define-once-public. While only used once, removes a weird export which was previously easily missed.
* Resolve TODO about calendar styles.Hugo Hörnquist2022-06-21
|
* Minor cleanup in fmt-single-event.Hugo Hörnquist2022-06-21
|
* Remove obsolete TODO.Hugo Hörnquist2022-06-21
|
* Move TODO to issue #56.Hugo Hörnquist2022-06-21
|
* Fix comments being constantly added to po files.Hugo Hörnquist2022-06-16
| | | | | | | | xgettext:s comment fetcher doesn't handle the same source string at multiple places, with different comments. Meaning that at those places all comments were copied over each time. This commit remove the problematic comments from the source code.
* Merge html-validator.Hugo Hörnquist2022-06-13
|\ | | | | | | | | | | | | | | Adds an HTML validator which checks the soundness of our generated document, both before and after javascript is ran (thanks to selenium). This merge also fixes the initial problems, meaning that the HTML should validate as of this commit.
| * Escape some unicode in initial xhtml output.Hugo Hörnquist2022-06-13
| | | | | | | | | | While not necessary, since both HTML and XHTML allows for direct UTF-8, the validator fails on it.
| * Remove with-label.Hugo Hörnquist2022-06-12
| |
| * Stop using with-label.Hugo Hörnquist2022-06-12
| |
* | Remove custom let*.Hugo Hörnquist2022-06-13
|/ | | | | | While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
* Allow HTML output of all routes.Hugo Hörnquist2022-06-12
|\ | | | | | | | | | | | | | | XHTML is still the far supperior format. However; Chrome(-like) browsers Lighthouse feature is worth quite a bit when it comes to ensuring a good web page, and Lighthouse refuses to work on anything except text/html. This is my work-around for that.
| * Update remaining routse to new xml or html system.Hugo Hörnquist2022-06-12
| | | | | | | | | | | | The old sxml->html-string was always wrong, since smxl->xml doesn't (necessarily) produce valid HTML. Now we get proper HTML or XHTML, depending on the `html' parameter.
| * Add html parameter to routes.Hugo Hörnquist2022-06-12
| | | | | | | | Finally making the few previous commits worth something.
| * Embedd fragile strings in sxml in procedures.Hugo Hörnquist2022-06-12
| | | | | | | | | | | | | | Since procedures allow direct controll of the output. Everything worked fine for XML output, but HTML encodes apostrophes as ', which works really bad in script tags.
| * Add <!DOCTYPE html> to xhtml-doc macro.Hugo Hörnquist2022-06-12
| | | | | | | | | | | | | | | | | | The doctype declaration is "required" when outputing regular HTML, and fine when output XHTML. Also remove the tests of xhtml-doc, since they basically just copied the deffinition (and stoped working since a procedure can't easily be tested for equality).
* | Fix a few strings where translations wheren't applied.Hugo Hörnquist2022-06-11
|/
* Clean up (calp server routes).Hugo Hörnquist2022-06-10
|
* Minor cleanup.Hugo Hörnquist2022-04-25
|
* Introduce filename-extension procedure.Hugo Hörnquist2022-04-24
|
* Dead code removal.Hugo Hörnquist2022-04-24
|
* Introduce component date-jump.Hugo Hörnquist2022-04-23
|
* Update comment on cal-table.Hugo Hörnquist2022-04-23
|
* Remove unused procedure form.Hugo Hörnquist2022-04-23
|
* Made update-zoneinfo own entry point.Hugo Hörnquist2022-04-23
|
* Fix missing hower-text for changelog tabs.Hugo Hörnquist2022-04-23
|
* Move repl-start to end of main.Hugo Hörnquist2022-04-23
| | | | | Since everything is properties the repl thread needs to be spawned AFTER the configuration is loaded.
* Repair and rewrote sliders in HTML.Hugo Hörnquist2022-04-23
| | | | | | 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.
* Fix some translations not being evaluated.Hugo Hörnquist2022-04-21
|