aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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
|
* 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.
* Scroll-behavior: smooth for siderbar.Hugo Hörnquist2022-04-23
| | | | | This make scrolling to event visually apparent (mostly used when JavaScript is disabled).
* 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.
* Made lcov.info phony.Hugo Hörnquist2022-04-21
| | | | | We do actually generate lcov.info, but It's marked phony to force tests to always run.
* Add a lot of new unit tests.Hugo Hörnquist2022-04-21
|
* Allow tests in subdirs.Hugo Hörnquist2022-04-21
|
* Add procedure file-hidden?.Hugo Hörnquist2022-04-21
|
* Use module-introspection more.Hugo Hörnquist2022-04-21
|
* Introduce module-declaration?.Hugo Hörnquist2022-04-21
|
* Remove unnecessary procedure flatten-tree.Hugo Hörnquist2022-04-21
| | | | (@ (hnh util) flatten) already does the same thing.
* Introduce fs-find.Hugo Hörnquist2022-04-21
|
* Fix comment on unval.Hugo Hörnquist2022-04-21
|
* datetime->decimal-hour correct time for hours without days.Hugo Hörnquist2022-04-21
|
* Simplify week-day-name.Hugo Hörnquist2022-04-21
| | | | | The out of range exception could never occur, since I aleready limited the interval to (n % 7) + 1.
* Fix some translations not being evaluated.Hugo Hörnquist2022-04-21
|
* Fix edit popups not auto opening.Hugo Hörnquist2022-04-12
| | | | | Depending an the exact text of an translatable string seems like a bad idea.
* Merge all datetime tests to one file.Hugo Hörnquist2022-04-11
|
* Replace systemd service with working, remove PKGBUILD.Hugo Hörnquist2022-04-11
|
* Fix name collision in server entry-point.Hugo Hörnquist2022-04-11
|
* Translate newly added strings.Hugo Hörnquist2022-04-11
|
* Remove location lines from po files.Hugo Hörnquist2022-04-11
| | | | While useful, they clutter the changelog to much.
* Remove config sandbox.Hugo Hörnquist2022-04-11
| | | | Old sandbox approach always felt like bit of a hack.
* Rewrote script get-config.Hugo Hörnquist2022-04-11
| | | | | Now works with new config system. Also outputs result as an ini-file.
* Allow translation of non-extracted strings.Hugo Hörnquist2022-04-11
|
* split (all-modules) into two procedures.Hugo Hörnquist2022-04-11
|
* Manual fixup of f589216Hugo Hörnquist2022-04-11
| | | | | Name conflicts are apparently not good. Manual fixup since it's too much a hassle to undo the merge.
* Replace config system with paramater based system.Hugo Hörnquist2022-04-11
| | | | | | | | | | | | | | | | This new setup stores all configurations are parameters. This forces everything into modules, and ensures that we can't have a module use an unloaded config. It (unfortunatelly) also causes users to have to specify namespaces when defining values, but ini-files (and the like) already does that. Also, there is nothing stopping a new `set-config!' from being defined which allows un-namespaced operation. The commit also removes the introspection procedures. They where a bit weird to begin with, since they only showed loaded fields. And since the program had no way of properly serializing or deserializing them we remove them for the time being. They would however be good to reintroduce together with a proper menu for editing simple configuration (see Emacs' `custom-set-variables').
* Fix loop in import entry-point.Hugo Hörnquist2022-04-11
|