aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Improve test flags in makefile.Hugo Hörnquist2022-06-12
|
* Update test-runner to display a tree for groups.Hugo Hörnquist2022-06-12
|
* Fix timespec.Hugo Hörnquist2022-06-12
|
* Add timespec tests.Hugo Hörnquist2022-06-12
|
* Add LIMIT flag to make check.Hugo Hörnquist2022-06-12
|
* Add explaining comment to get-terminal-size.Hugo Hörnquist2022-06-12
|
* 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.
| * Handle error for user-additions salar.Hugo Hörnquist2022-06-12
| | | | | | | | | | The script crashes just as before, but now we get slightly better error messages.
| * 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.
| * Follow all instances of tagName with toLowerCase.Hugo Hörnquist2022-06-12
| | | | | | | | | | A HTML document returns tag names as upper case, while xml documents return them as lower case (or possibly their original case).
| * 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).
| * Extend sxml->html to copy procedures output verbatim.Hugo Hörnquist2022-06-12
| | | | | | | | | | | | sxml->xml already allows arbitrary strings to be included through procedures current output port. This adds the same feature to sxml->html for feature parity.
| * Re-add (sxml html).Hugo Hörnquist2022-06-12
| | | | | | | | | | | | See future commits for rationale. This reverts commit 54fc8cf92e9212cc88c824f7b49549160d860657.
* | Add number of TODO's.Hugo Hörnquist2022-06-11
| |
* | Update today-button to not depend on initial content.Hugo Hörnquist2022-06-11
| | | | | | | | | | Depending on initial content is fragile. This instead constructs a completely new tag, discarding what happened to be there before.
* | Move clock component initialization to procedure.Hugo Hörnquist2022-06-11
| | | | | | | | | | | | | | 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.
* | Remove obsolete TODO about testing html sliders.Hugo Hörnquist2022-06-11
| |
* | Update swedish translations.Hugo Hörnquist2022-06-11
| |
* | Fix a few strings where translations wheren't applied.Hugo Hörnquist2022-06-11
| |
* | Document web stuff.Hugo Hörnquist2022-06-11
| |
* | Extend web-query to handle keys without values.Hugo Hörnquist2022-06-11
| |
* | Add tests for web-query.Hugo Hörnquist2022-06-11
|/
* Rewrote rrule-instances to handle RDATE and EXDATE correctly.Hugo Hörnquist2022-06-11
|
* Add tests for exdate and rdate in recurrence sets.Hugo Hörnquist2022-06-11
| | | | | | And improve recurrence-advance to actually produce sensible objects. These are currently failing, but are fixed in the next commit.
* Supress time-limited-stream test.Hugo Hörnquist2022-06-10
| | | | | | While fine, it often doesn't time out. I highly believe that this is a bug with how guile's time limit system works. And the test is slow either way per design, so might as well skip it.
* Move if in recurrence generate to better place.Hugo Hörnquist2022-06-10
|
* Cleanup in run-tests.Hugo Hörnquist2022-06-10
|
* Add verbose toggle to tests.Hugo Hörnquist2022-06-10
| | | | Also change DEBUG to 1, no difference. But 0 for true felt wrong
* Clean up creation of global-event-object.Hugo Hörnquist2022-06-10
|
* Resolve TODO in module-dependants.Hugo Hörnquist2022-06-10
|
* Clean up (calp server routes).Hugo Hörnquist2022-06-10
|
* Add rrule-instances-rawHugo Hörnquist2022-06-10
| | | | | | The current rrule-instances requires an event, the new one works directly on recurrence rules (and dates) meaning that it can be used independently.
* Add rrule-instances-rawHugo Hörnquist2022-06-10
| | | | | | The current rrule-instances requires an event, the new one works directly on recurrence rules (and dates) meaning that it can be used independently.
* Possibly marginally improve tests.Hugo Hörnquist2022-05-18
|
* Add procedure realpath.Hugo Hörnquist2022-05-18
|
* Add check rule to makefile.Hugo Hörnquist2022-05-18
| | | | | The old test generates coverage, which while good is rather slow. Running the tests this way is a way faster.
* Add test for remove-child!Hugo Hörnquist2022-05-11
|
* Add remove-child! at appropriate places.Hugo Hörnquist2022-05-11
|
* Add procedure remove-child!Hugo Hörnquist2022-05-11
|
* Resolve failing tests from last commit.Hugo Hörnquist2022-05-11
|
* Add (currently failing) tests for remove-event.Hugo Hörnquist2022-05-11
|
* Add procedure with-working-directory.Hugo Hörnquist2022-05-11
|
* Move let-env to own module.Hugo Hörnquist2022-05-11
|
* Remove arbitary_kv.js.Hugo Hörnquist2022-04-25
| | | | | | | | | 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.
* Minor cleanup.Hugo Hörnquist2022-04-25
|
* Scheme and js now finds HTML in text with same regex.Hugo Hörnquist2022-04-25
|
* Change user-additions HTML detection.Hugo Hörnquist2022-04-24
|
* Minor dependency fixup in static/Makefile.Hugo Hörnquist2022-04-24
|