aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent (follow)
Commit message (Collapse)AuthorAge
* Add /everything.ics endpoint.HEADshowmasterHugo Hörnquist2022-10-24
| | | | | Endpoint returns all events in interval. Used to sync to other calendars.
* Minor cleaup.Hugo Hörnquist2022-10-16
|
* Validate that submitted event doesn't have invalid interval.Hugo Hörnquist2022-10-16
|
* Fix errors when submitting events.Hugo Hörnquist2022-10-16
|
* Truncate print for spawned repl.Hugo Hörnquist2022-10-16
| | | | | | Having this as the default allows the representation of vcomponents to not contain a newline. Otherwise accidentaly printing everything was a sure fire way to hang emacs.
* Change gettext '_' to 'G_'.Hugo Hörnquist2022-10-16
| | | | Guile 3 reserves _ for other stuff.
* Extend globel-even-object reload to take optional parameter.Hugo Hörnquist2022-09-18
|
* Import missing car+cdr.Hugo Hörnquist2022-07-07
|
* Cleanup (vcomponent datetime).Hugo Hörnquist2022-07-07
|
* Remove (add|remove)-day, and month[+-].Hugo Hörnquist2022-06-23
| | | | | Procedures where overly specific, and doing it manually was almost no more work.
* Normalize keyword syntax.Hugo Hörnquist2022-06-23
|
* Centralize (almost) all exports to :export in define-module.Hugo Hörnquist2022-06-23
|
* Remove all inline use-modules.Hugo Hörnquist2022-06-23
|
* Minor cleanup in recurrence generate.Hugo Hörnquist2022-06-23
|
* Rewrote extenders or limiter generations.Hugo Hörnquist2022-06-23
| | | | | The old macro was fancy, but rather unweildly. The new version looks really similar when looking, but without as much magic.
* Fix comments being constantly added to po files.Hugo Hörnquist2022-06-16
| | | | | | | | xgettext:s comment fetcher doesn't handle the same source string at multiple places, with different comments. Meaning that at those places all comments were copied over each time. This commit remove the problematic comments from the source code.
* Remove custom let*.Hugo Hörnquist2022-06-13
| | | | | | While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
* Rewrote rrule-instances to handle RDATE and EXDATE correctly.Hugo Hörnquist2022-06-11
|
* Move if in recurrence generate to better place.Hugo Hörnquist2022-06-10
|
* Clean up creation of global-event-object.Hugo Hörnquist2022-06-10
|
* Add rrule-instances-rawHugo Hörnquist2022-06-10
| | | | | | The current rrule-instances requires an event, the new one works directly on recurrence rules (and dates) meaning that it can be used independently.
* Add rrule-instances-rawHugo Hörnquist2022-06-10
| | | | | | The current rrule-instances requires an event, the new one works directly on recurrence rules (and dates) meaning that it can be used independently.
* 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
|
* Translate newly added strings.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').
* 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
| |
| * Prepare code for translation.Hugo Hörnquist2022-02-22
| |
* | Use existing filename if exists.Hugo Hörnquist2022-04-05
| |
* | Minor fixups.Hugo Hörnquist2022-04-05
| |
* | Slightly better parameter checking on save-event.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 assert.Hugo Hörnquist2022-03-28
| | | | | | | | | | Barely used, and almost always was better server by a propper error call.
* | Normalize errors.Hugo Hörnquist2022-03-28
| |
* | 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
| |
* | Replace Guile's srfi-64:s test-error with working version.Hugo Hörnquist2022-03-07
| | | | | | | | Along with updating now failing tests.
* | Add missing (ice-9 format) imports.Hugo Hörnquist2022-03-06
|/
* Move path-append to own module.Hugo Hörnquist2022-02-01
|
* 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.
* 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.
* Add TODO about broken color files.Hugo Hörnquist2021-12-12
|
* Add delete-{parameter,property}!Hugo Hörnquist2021-12-06
|