aboutsummaryrefslogtreecommitdiff
path: root/module/util (unfollow)
Commit message (Collapse)Author
2020-07-30Simplify internal app interface.Hugo Hörnquist
2020-07-27Cleanup in atomic-output...Hugo Hörnquist
2020-07-22Let with-atomic-output-to-file break free.Hugo Hörnquist
2020-07-20Add missing format dependency for exceptions.Hugo Hörnquist
2020-07-20Add read-lines.Hugo Hörnquist
2020-07-20Add module for immutable directed graphs.Hugo Hörnquist
2020-06-29Add base64 utility functions.Hugo Hörnquist
2020-06-14Repaired ability to set config value to #f.Hugo Hörnquist
2020-06-13Add base64 encoder/decoder.Hugo Hörnquist
2020-06-10(util config) compiles again.Hugo Hörnquist
2020-06-05Change top error handler.Hugo Hörnquist
2020-06-05Add warnings-are-errors config.Hugo Hörnquist
2020-06-01Define method now actually sets current-app.Hugo Hörnquist
2020-06-01Minor comment changes.Hugo Hörnquist
2020-06-01Minor output changes.Hugo Hörnquist
2020-06-01Break text procedures into modules.Hugo Hörnquist
2020-06-01Remove *TOP* tags from descriptions.Hugo Hörnquist
2020-06-01Fix configuration help, print with --help.Hugo Hörnquist
2020-06-01Add number of tags and attributes to ANSI formatter.Hugo Hörnquist
2020-06-01Modify config to store return of #:pre.Hugo Hörnquist
2020-05-24Introduce warnings-are-errors parameter.Hugo Hörnquist
2020-05-23Slight changes to define-config.Hugo Hörnquist
2020-05-19Remove strbuf.Hugo Hörnquist
Strbuf existed for the previous parser, which immitated the C parser but in scheme. The new parser is much more "correct" scheme, and therefore doesn't need a c-string thingy.
2020-05-14Add some TODO's.Hugo Hörnquist
2020-05-11Simplify prettify-tree of util/exceptions.Hugo Hörnquist
2020-05-09New parser now on feature parity with old.Hugo Hörnquist
2020-05-05Add profile! macro.Hugo Hörnquist
2020-05-05Getopt-opt handles value being any symbol.Hugo Hörnquist
2020-05-04All warning procedures now uses warning system.Hugo Hörnquist
2020-05-04Add support for future code tag.Hugo Hörnquist
2020-05-04Add some more text formatting tags.Hugo Hörnquist
2020-05-04Add option formatter.Hugo Hörnquist
2020-05-04Add shutdown-hook.Hugo Hörnquist
2020-04-30Change call signature for [gs]etf.Hugo Hörnquist
2020-04-30Minor changes.Hugo Hörnquist
2020-04-30Add `app' type.Hugo Hörnquist
2020-04-25Document 'warning'Hugo Hörnquist
2020-04-25define-config now expands correctly.Hugo Hörnquist
2020-04-22Fix warning parameter.Hugo Hörnquist
2020-04-20Add parameterizised warning procedure.Hugo Hörnquist
2020-04-07Minor notes and fixes.Hugo Hörnquist
2020-04-03Update define-config to hopefully check pre-existing values.Hugo Hörnquist
2020-04-02Remove ensure? for configs, built in instead.Hugo Hörnquist
2020-04-01Update remaining code to use new config scheme.Hugo Hörnquist
2020-04-01Add set-config! and get-config, along with print for debug.Hugo Hörnquist
2020-04-01Start rewrite mentioned in last commit.Hugo Hörnquist
2020-03-31Attempt at decentralized configuration system.Hugo Hörnquist
Placing all possible configuration items in a central (parameters) module scales really badly. This idea that any module can register configuration parameters is better. The current implementation however has the drawback that it requires that the module exposing the parameter is loaded before the value can be sat, but that scales even worse. A probable solution would be to abandon binding everything to guile's module system, and instead let (util config) provide a `conf-ref' and a `conf-set!' procedures. A `define-configuration' similar to emacs `defcustom' could be of use, mainly for retroactively type checking parameters.
2020-03-09Sprinkled in some time prints.Hugo Hörnquist
2019-12-23Move open-{input,output}-port to (util io).Hugo Hörnquist
2019-11-03Add descirption to strbuf.Hugo Hörnquist