aboutsummaryrefslogtreecommitdiff
path: root/module/output (unfollow)
Commit message (Collapse)Author
2019-12-27HTML Leave quirks mode.Hugo Hörnquist
2019-12-27Remove faulty next-month.Hugo Hörnquist
2019-12-27HTML Fix whole day events missing from sidebar.Hugo Hörnquist
2019-12-25HTML output comments.Hugo Hörnquist
2019-12-25HTML output only describe multi-day events once.Hugo Hörnquist
The HTML renderer mostly works in days. Events spanning over midnight therefore appears multiple times in the layout. This lead to their start-time + uid not to be unique any more, which was bad since I assumed it to be unique. This commit only describes a multi-day event on the day the event starts, with a special case for events which start before a given time span. Repeating events aren't affected, and are still show once per instance.
2019-12-24ICAL handling of events different from display handling.Hugo Hörnquist
Previously repeating events where always instantiated to a stream of all events to come (possibly infinite), and then zipped with the list of regular events to create a stream of all events in the world. This commit allows access to the raw lists of parsed regular and repeating events before they are extrapolated and merged.
2019-12-24Fix ical outuput for with recurrence-id:s.Hugo Hörnquist
2019-12-24Rework program initialization.Hugo Hörnquist
Old init setup had the fancy idea to parse all files before anything could be done with them. This however led to problems when a part of the program which didn't care for the calendar files (such as text formatting). It also made testing performance almost impossible since to much code was run before I had a chance to init statprof.
2019-12-23Move open-{input,output}-port to (util io).Hugo Hörnquist
2019-12-23Add key filtering in ical output.Hugo Hörnquist
2019-12-22Broke out nav-link into function.Hugo Hörnquist
2019-12-22Fix prev and next month buttons.Hugo Hörnquist
2019-12-22html output comments.Hugo Hörnquist
2019-11-11Work on ICS output.Hugo Hörnquist
2019-11-11Work on ICS output.Hugo Hörnquist
2019-11-10Fix next and prev month buttons.Hugo Hörnquist
2019-11-09Work on HTML output.Hugo Hörnquist
2019-11-03Move stuff between vcomponent/{base,parse}.Hugo Hörnquist
2019-11-02Minor changes to env and ical.Hugo Hörnquist
2019-10-29Start work on ical output.Hugo Hörnquist
2019-10-08Remove 'none' output.Hugo Hörnquist
This dummy output was earlier used to force a compilation, but since I have (hopefully) figured out how to actually compile stuff it's no longer necesarry.
2019-10-06Minor cleanup in scheme code.Hugo Hörnquist
2019-10-05Fix day-stream, and in effect terminal output.Hugo Hörnquist
2019-10-04HTML output seems to work in full now.Hugo Hörnquist
2019-10-04Actually fix NAME.Hugo Hörnquist
2019-10-01Add --width flag to format.Hugo Hörnquist
2019-06-01Reword terminal output to better modularization.Hugo Hörnquist
2019-06-01Rename {terminal => vulgar}.Hugo Hörnquist
2019-06-01Work on cloning events through editor.Hugo Hörnquist
2019-06-01Move get-git-version to new git module.Hugo Hörnquist
2019-05-29Reword how statprof is loaded.Hugo Hörnquist
2019-05-29Add info output.Hugo Hörnquist
2019-05-21Fix git version parsing.Hugo Hörnquist
2019-05-20Add git version to HTML info footer.Hugo Hörnquist
2019-05-13Add basic server.Hugo Hörnquist
2019-05-10Update CSS.Hugo Hörnquist
2019-05-10Add HTML footer.Hugo Hörnquist
2019-05-08Add flags for just running the text flower.Hugo Hörnquist
It's twisted if one program should do many things, or just a single thing. If we assume that this program does two things: reading calendar files, and writing output, then it should be ok to allow any of those parts to run independentally of the other. Making it ok to just run the text flower.
2019-05-06Add unused js for creating events.Hugo Hörnquist
2019-05-06Add marker on today in small calendar.Hugo Hörnquist
2019-05-05Add missing leading zeroes in minical.Hugo Hörnquist
2019-05-04Handle no event groups in interval.Hugo Hörnquist
2019-05-01Change function for creating hashtables.Hugo Hörnquist
2019-05-01Change how attributes are fetched.Hugo Hörnquist
Previous version failed when an attribute contained a list. This fixes that, by always returning a circular list, delimited with #f when it loops. Methods for moving through this list is currently lacking.
2019-04-30Various HTML fixups and additions.Hugo Hörnquist
2019-04-30Fix horizontal stripes.Hugo Hörnquist
2019-04-30Add HTML sidebar, various formatting.Hugo Hörnquist
2019-04-30Replace 'when' and 'unless'.Hugo Hörnquist
2019-04-26Made HTML day headers better.Hugo Hörnquist
2019-04-25Move statprof to encompass all.Hugo Hörnquist