aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
|
* Fixup translatable strings.Hugo Hörnquist2022-04-11
|
* Merge branch 'translation'Hugo Hörnquist2022-04-07
|\
| * Fix translation for (vcomponent datetime output).Hugo Hörnquist2022-02-22
| |
| * Fix modularization of recurrence display.Hugo Hörnquist2022-02-22
| |
| * Update (text module) to dispatch.Hugo Hörnquist2022-02-22
| | | | | | | | | | (text module) now dispatch its functions to the correct (text module lang) module.
| * Update makefile for localizations.Hugo Hörnquist2022-02-22
| |
| * Initial swedish translation.Hugo Hörnquist2022-02-22
| |
| * Prepare code for translation.Hugo Hörnquist2022-02-22
| |
* | Rename filename-extension{ => ?}.Hugo Hörnquist2022-04-06
| |
* | Document part of srfi-41 utils.Hugo Hörnquist2022-04-06
| |
* | Use existing filename if exists.Hugo Hörnquist2022-04-05
| |
* | Remove reference to non-existant parameter submit.Hugo Hörnquist2022-04-05
| |
* | Remove innerHTML from user-additions.js.Hugo Hörnquist2022-04-05
| |
* | Minor fixups.Hugo Hörnquist2022-04-05
| |
* | with-vulgar now uses alternative screen.Hugo Hörnquist2022-04-05
| |
* | Made sidebar date headings sticky.Hugo Hörnquist2022-04-05
| |
* | Slightly better parameter checking on save-event.Hugo Hörnquist2022-04-05
| |
* | Readd --skip and --only flags to run-tests.Hugo Hörnquist2022-04-05
| |
* | Clean up config.scm.Hugo Hörnquist2022-04-05
| |
* | Fix rrule:s in frontend being parsed incorrectly.Hugo Hörnquist2022-04-05
| |
* | Add tests for add-and-save.Hugo Hörnquist2022-04-05
| |
* | Set some default values for recur rules.Hugo Hörnquist2022-04-05
| |
* | Move code for saving event away from routes.Hugo Hörnquist2022-04-05
| | | | | | | | | | | | This frees it, currently only for calling it from our import entry point, but this will also allow us to much easier write tests for it (which we need since adding recurring events doesn't work).
* | Comment and set defaults for event object.Hugo Hörnquist2022-04-05
| |
* | Remove parse-time from (datetime timespec).Hugo Hörnquist2022-03-30
| |
* | Handle XML entities slightly better in user-additions.js.Hugo Hörnquist2022-03-30
| |
* | Unset XDG_DATA_HOME in env file.Hugo Hörnquist2022-03-28
| |
* | Rewrote symlink creator for HTMLHugo Hörnquist2022-03-28
| |
* | Check system-error errno correctly.Hugo Hörnquist2022-03-28
| |
* | Testrunner skip hidden files.Hugo Hörnquist2022-03-28
| |
* | Add basic documentation of error types.Hugo Hörnquist2022-03-28
| |
* | Remove assert.Hugo Hörnquist2022-03-28
| | | | | | | | | | Barely used, and almost always was better server by a propper error call.
* | Use catch* where appropriateHugo Hörnquist2022-03-28
| |
* | Add catch*Hugo Hörnquist2022-03-28
| |
* | Normalize errors.Hugo Hörnquist2022-03-28
| |
* | Unsmarted define-config%Hugo Hörnquist2022-03-28
| |
* | Stop exporting internal time+%Hugo Hörnquist2022-03-28
| |
* | Minor texi fixups.Hugo Hörnquist2022-03-28
| |
* | Add texinfo doc for (datetime).Hugo Hörnquist2022-03-28
| |
* | Add comment about why browserify.Hugo Hörnquist2022-03-28
| |
* | Introduce directory-listing.scssHugo Hörnquist2022-03-28
| |
* | HTML directory table now gives 404 instead of 500Hugo Hörnquist2022-03-15
| |
* | Add JS user config for hyperlinking locations at LiU.Hugo Hörnquist2022-03-15
| | | | | | | | | | This is rather specific to me, but we already have the president with the bundled config.scm file.
* | Introduce user-additions in frontend.Hugo Hörnquist2022-03-15
| | | | | | | | Along with an initial example of their use.
* | Introduce concept of VEvent formatters in frontend.Hugo Hörnquist2022-03-15
| |
* | Make make-routes pre-compile all regexes.Hugo Hörnquist2022-03-15
| |
* | Fix r:host and r:port in make-route's body.Hugo Hörnquist2022-03-15
| | | | | | | | | | | | | | Also noted that r:port was bound twice. The earlier binding (which is now removed) was a Guile IO-port for writing the response, while the later was the target port number of the request.
* | Qualify functions in make-routes expansion.Hugo Hörnquist2022-03-15
| | | | | | | | | | Previously, the user of the macro needed a correct environment. This should not be needed any more.