diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-08-28 11:51:49 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-08-28 11:52:12 +0200 |
commit | 70f0d43e281808332444d4d490034cf0bd892ff6 (patch) | |
tree | d518045e532c93aa8809e22ac7f7da8efb2ae957 | |
parent | 389ccf9b139376724f35064aba9f820055306301 (diff) |
tidy: improve comments to distinguish subsetting from serializing
-rwxr-xr-x | bin/events2md.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/events2md.pl b/bin/events2md.pl index a83fd13..05081d1 100755 --- a/bin/events2md.pl +++ b/bin/events2md.pl @@ -212,7 +212,7 @@ if ( $log->is_trace ) { # 3. PROPFIND with depth: 1 # as documented at <https://stackoverflow.com/a/11673483> -# serialize calendar events +# select subset of calendar events $log->debug('serialize calendar events...'); my $start; if ( $ENV{CAL_DAV_NOW} ) { @@ -241,6 +241,8 @@ if ( $log->is_trace ) { use DDP; p @events; } + +# serialize calendar view my $output_path; if ($OUTPUT_FILE) { $output_path = path($OUTPUT_FILE); |