Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Split note file generation into separate function | Lukas Fleischer | 2012-01-17 | 1 | -12/+3 |
| | | | | | | | We currently use this in one place only but might reuse this a couple of times later (when migrating to libical). Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | ||||
* | Break out different import/export formats | Lukas Fleischer | 2012-01-07 | 1 | -0/+1263 |
Extract iCal and pcal import/export routines into separate files. This reduces complexity of the super huge "io.c" source file and makes it easier to follow changes that affect the iCal and pcal routines only (commits affecting both formats are very uncommon). Before: $ wc -l src/io.c 2938 src/io.c After: $ wc -l src/{io,ical,pcal}.c 1445 src/io.c 1263 src/ical.c 317 src/pcal.c 3025 total Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> |