aboutsummaryrefslogtreecommitdiff
path: root/module (unfollow)
Commit message (Collapse)Author
2022-03-08Respecificy return value of with-atomic-output-to-file.Hugo Hörnquist
2022-03-07Replace Guile's srfi-64:s test-error with working version.Hugo Hörnquist
Along with updating now failing tests.
2022-03-07Handle broken symlink when generating static HTML.Hugo Hörnquist
2022-03-07Rewrote checksum->string.Hugo Hörnquist
Lets take full advantage of guile's format.
2022-03-07Cleanup in (hnh util path).Hugo Hörnquist
2022-03-06Allow config.scm to call resolve-interface and module-ref.Hugo Hörnquist
Repairs commit 049e94a125ecf43547b62778eb4851d67b1f3cfd, which shows how config.scm can use optional dependencies.
2022-03-06Add missing (ice-9 format) imports.Hugo Hörnquist
2022-03-01Remove with-stream macro.Hugo Hörnquist
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.
2022-03-01Add unit test for days-in-interval.Hugo Hörnquist
2022-02-22Add some TODO comments.Hugo Hörnquist
2022-02-13Datetime restrict imports.Hugo Hörnquist
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.
2022-02-13Datetime remove old commented parse-month.Hugo Hörnquist
2022-02-13Datetime rewrote parse-month.Hugo Hörnquist
2022-02-13Begin1 handle multiple values.Hugo Hörnquist
2022-02-13Add remove home button to seacrh page.Hugo Hörnquist
2022-02-02Move calculate-fg-color into calp subtree.Hugo Hörnquist
While the algorithm was general, the packing of colors, along with the error handling made it to non-portable.
2022-02-01Rewrote path-append to be portable.Hugo Hörnquist
2022-02-01Add path-split.Hugo Hörnquist
2022-02-01Add path-join.Hugo Hörnquist
2022-02-01Move path-append to own module.Hugo Hörnquist
2022-02-01Remove define-many.Hugo Hörnquist
It was only used in one module, and provided litle clarity over a simple set of define statementns.
2022-02-01Remove (hnh util) exports without values.Hugo Hörnquist
2022-01-31Add tree-node.Hugo Hörnquist
2022-01-31Repair warnings-are-error configuration item.Hugo Hörnquist
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2022-01-29Add span-upto.Hugo Hörnquist
2022-01-29Add ~b and ~p flags to datetime parser.Hugo Hörnquist
2022-01-21Minor cleanup.Hugo Hörnquist
2022-01-21Clean up (calp util options).Hugo Hörnquist
2022-01-21Move config print to own flag.Hugo Hörnquist
All the configuration variables hid the actually useful information.
2021-12-22Cleanup modules.Hugo Hörnquist
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.
2021-12-20let-env now handles non-local exits correctly.Hugo Hörnquist
2021-12-20find-extreme on empty list now an error.Hugo Hörnquist
2021-12-20Documentation updates for util.Hugo Hörnquist
2021-12-20Remove procedure map-eachHugo Hörnquist
Was only used once, and wasn't even optimized.
2021-12-20Remove re-export-modulesHugo Hörnquist
A weird special form which was only used once, and didn't add much clarity above what we actually did.
2021-12-12Add TODO about broken color files.Hugo Hörnquist
2021-12-12Correctly show recur indicator.Hugo Hörnquist
2021-12-12Fix recurring events not being rendered in side listHugo Hörnquist
2021-12-12Fix colors on earlier events in sidebarHugo Hörnquist
2021-12-10Add create event button!Hugo Hörnquist
2021-12-10'.btn' no longer contains div.Hugo Hörnquist
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.
2021-12-10Remove commented out script includes.Hugo Hörnquist
2021-12-10Repair event position in week.Hugo Hörnquist
2021-12-10Change {start,end}-date to pre-start and post-end.Hugo Hörnquist
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.
2021-12-10Major move from week to calendar meta-view. Also repairs month view.Hugo Hörnquist
2021-12-10Major cleanup in calp html.Hugo Hörnquist
2021-12-09Propagate recurring events to frontend.Hugo Hörnquist
This handles each instance of a recurring event as its own unique event, which allows us to properly send it to the frontend. It's currently not possible to submit the repeating events back, but that is probably a underlying problem.
2021-12-09<datetime> no longer crashes.Hugo Hörnquist
2021-12-07Deprecate editable-repeat-info, some comments.Hugo Hörnquist