aboutsummaryrefslogtreecommitdiff
path: root/module/vcalendar.scm (unfollow)
Commit message (Collapse)Author
2019-04-23Rename module vcalendar => vcomponent.Hugo Hörnquist
2019-04-23Move event-length.Hugo Hörnquist
2019-04-23Add some utilitiy functions.Hugo Hörnquist
2019-04-22Fix DTEND of timezoned events.Hugo Hörnquist
2019-04-20Rename (vcalendar {recur => recurrence}).Hugo Hörnquist
2019-04-20Add timezone handling.timezoneHugo Hörnquist
This is a way to large commit. But I see no feasable way to break it down into multiple smaller commits. The main "secret" to solving timezones for recurring events was to remember to recalculate timezones whenever a new instance of the object was generated. This current implementation seems really slow (> 1s). Further testing is needed.
2019-04-20Change how properties procedure work.Hugo Hörnquist
2019-04-20Remove remaining export's.Hugo Hörnquist
2019-04-20Change parse-datetime back to single return.Hugo Hörnquist
2019-04-13Add earlier work on timezones.Hugo Hörnquist
Add earlier work on timezones, with a few inline modifications. This is really to big of a commit. But we are so far from a stable release that it should be fine. The current version seems to eager, and recalculates to many times. This will soon be fixed in a future version.
2019-04-10Rework how attributes and properties are accessed.Hugo Hörnquist
Made the fact that properties belong to an attribute shine through to scheme. This by setting the SCM field in the strbuf:ers in my vcomponents to a pair of their old SCM value, and a hash table representing the properties. This also meant that the primitive set-attribute! could be replaced by a set-car! on the pair returned by the primitive get-attribute. And that both set- and get-property now simple works on the hash table returned by get-attribute. The major problem with this release was that I for a while missed that DEEP_COPY(strbuf) now also needed to deep copy the SCM values. Without that attributes in a copied vcomponent would be shared with the original. This mainly lead to repeating events all being the same.
2019-04-06Fix timezone accumelator.Hugo Hörnquist
2019-04-06Add temporary set-attributes!Hugo Hörnquist
2019-03-31Add (read only) property access from scheme.Hugo Hörnquist
2019-03-31Add as-{string,symb}.Hugo Hörnquist
2019-03-24Update make-vcomponent to allow VIRTUAL components.Hugo Hörnquist
2019-03-24Add VIRTUAL vcomponents.Hugo Hörnquist
VIRTUAL vcomponents are vcomponents created without a source. Their primiary purpose is for creating brand new events, which will later be dumped to the proper files. They can however also be used in testing for great effect.
2019-03-22Move C and Scheme code into subdirs.Hugo Hörnquist
2019-03-21Update utility functions.Hugo Hörnquist
2019-03-21Some cleanup.Hugo Hörnquist
2019-03-12Update vcalendar to utilize TYPE field.Hugo Hörnquist
2019-03-10Update vcalendar to allow symbol keys.Hugo Hörnquist
2019-03-10Add filter-children!Hugo Hörnquist
2019-03-09Minor cleanups.Hugo Hörnquist
2019-03-08Move stuff between modules.Hugo Hörnquist
2019-03-08Made DTSTART have <time> instead of <date> type.Hugo Hörnquist
2019-03-08Varius minor fixes.Hugo Hörnquist
2019-03-08Add copy-vevent.Hugo Hörnquist
2019-03-04Add attr as generalized setter for vcomponent attributes.Hugo Hörnquist
2019-03-02Expose KEY(TRIE(content_line)) to scheme.Hugo Hörnquist
2019-02-26Move load-extension to (vcalendar primitive).Hugo Hörnquist
2019-02-26Add %vcomponent-parent.Hugo Hörnquist
2019-02-26Start on propper vcalendar scheme library.Hugo Hörnquist