aboutsummaryrefslogtreecommitdiff
path: root/module (follow)
Commit message (Collapse)AuthorAge
* Calp server now 404s on missing file on disk.Hugo Hörnquist2022-03-15
|
* Add native UUID generator.Hugo Hörnquist2022-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While not necessary, since we barely use UUID:s, it's still WAY faster, and nice to not depend on the system providing `uuidgen'. For comparison, number of UUID:s generated by different settups in 1 second: 65.000 :: guile native 700 :: guile shell-out 3.500.000 :: c native 100.000 :: libuuid - guile bindings 650.000 :: libuuid Tests where run with either (call-with-time-limit 1 (lambda () (let loop () (uuid) (set! count (1+ count)) (loop))) (lambda _ (display count))) or volatile unsigned long long count = 0; sigaction(SIGALARM, ...); alarm(1); for (;;) { uuid(); count++; } (let ((count 0)) (call-with-time-limit 1 (lambda () (let loop () ((@ (hnh util) uuidgen)) (set! count (1+ count)) (loop))) (lambda _ (format #t "exec count = ~:d~%" count))))
* Move summary-filter and description-filter configs to more sensible place.Hugo Hörnquist2022-03-15
|
* Respecificy return value of with-atomic-output-to-file.Hugo Hörnquist2022-03-08
|
* Replace Guile's srfi-64:s test-error with working version.Hugo Hörnquist2022-03-07
| | | | Along with updating now failing tests.
* Handle broken symlink when generating static HTML.Hugo Hörnquist2022-03-07
|
* Rewrote checksum->string.Hugo Hörnquist2022-03-07
| | | | Lets take full advantage of guile's format.
* Cleanup in (hnh util path).Hugo Hörnquist2022-03-07
|
* Allow config.scm to call resolve-interface and module-ref.Hugo Hörnquist2022-03-06
| | | | | Repairs commit 049e94a125ecf43547b62778eb4851d67b1f3cfd, which shows how config.scm can use optional dependencies.
* Add missing (ice-9 format) imports.Hugo Hörnquist2022-03-06
|
* Remove with-stream macro.Hugo Hörnquist2022-03-01
| | | | | | | | | | It was an extra (rather complicated) macro to support, which had 2 unresolved TODO:s, and made the resulting code hard to read since it wasn't immediately apparent which procedures where replaced by their stream counterparts. The only using code was rewritten using a threading macro, which is way more readable.
* Add unit test for days-in-interval.Hugo Hörnquist2022-03-01
|
* Add some TODO comments.Hugo Hörnquist2022-02-22
|
* Datetime restrict imports.Hugo Hörnquist2022-02-13
| | | | | We might want to break datetime out into its own (independent) module, but for that we should have a clear understanding of what it uses.
* Datetime remove old commented parse-month.Hugo Hörnquist2022-02-13
|
* Datetime rewrote parse-month.Hugo Hörnquist2022-02-13
|
* Begin1 handle multiple values.Hugo Hörnquist2022-02-13
|
* Add remove home button to seacrh page.Hugo Hörnquist2022-02-13
|
* Move calculate-fg-color into calp subtree.Hugo Hörnquist2022-02-02
| | | | | While the algorithm was general, the packing of colors, along with the error handling made it to non-portable.
* Rewrote path-append to be portable.Hugo Hörnquist2022-02-01
|
* Add path-split.Hugo Hörnquist2022-02-01
|
* Add path-join.Hugo Hörnquist2022-02-01
|
* Move path-append to own module.Hugo Hörnquist2022-02-01
|
* Remove define-many.Hugo Hörnquist2022-02-01
| | | | | It was only used in one module, and provided litle clarity over a simple set of define statementns.
* Remove (hnh util) exports without values.Hugo Hörnquist2022-02-01
|
* Add tree-node.Hugo Hörnquist2022-01-31
|
* Repair warnings-are-error configuration item.Hugo Hörnquist2022-01-31
|
* Move stuff from calp/util to hnh/util.Hugo Hörnquist2022-01-31
| | | | | This is the first (major) step in splitting the generally useful items into its own library.
* Add span-upto.Hugo Hörnquist2022-01-29
|
* Add ~b and ~p flags to datetime parser.Hugo Hörnquist2022-01-29
|
* Minor cleanup.Hugo Hörnquist2022-01-21
|
* Clean up (calp util options).Hugo Hörnquist2022-01-21
|
* Move config print to own flag.Hugo Hörnquist2022-01-21
| | | | All the configuration variables hid the actually useful information.
* Cleanup modules.Hugo Hörnquist2021-12-22
| | | | | | Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
* let-env now handles non-local exits correctly.Hugo Hörnquist2021-12-20
|
* find-extreme on empty list now an error.Hugo Hörnquist2021-12-20
|
* Documentation updates for util.Hugo Hörnquist2021-12-20
|
* Remove procedure map-eachHugo Hörnquist2021-12-20
| | | | Was only used once, and wasn't even optimized.
* Remove re-export-modulesHugo Hörnquist2021-12-20
| | | | | A weird special form which was only used once, and didn't add much clarity above what we actually did.
* Add TODO about broken color files.Hugo Hörnquist2021-12-12
|
* Correctly show recur indicator.Hugo Hörnquist2021-12-12
|
* Fix recurring events not being rendered in side listHugo Hörnquist2021-12-12
|
* Fix colors on earlier events in sidebarHugo Hörnquist2021-12-12
|
* Add create event button!Hugo Hörnquist2021-12-10
|
* '.btn' no longer contains div.Hugo Hörnquist2021-12-10
| | | | | | | | 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.
* Remove commented out script includes.Hugo Hörnquist2021-12-10
|
* Repair event position in week.Hugo Hörnquist2021-12-10
|
* Change {start,end}-date to pre-start and post-end.Hugo Hörnquist2021-12-10
| | | | | | pre-start and post-end are the real intervals for a given page, since some more days than requested are often shown to make sense of a given layout.
* Major move from week to calendar meta-view. Also repairs month view.Hugo Hörnquist2021-12-10
|
* Major cleanup in calp html.Hugo Hörnquist2021-12-10
|