File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -584,6 +584,7 @@ sub convertActivityHashToExcel {
584
584
type
585
585
x_gear_name
586
586
start_date_local
587
+ x_week
587
588
x_start_h
588
589
name
589
590
x_min
@@ -962,7 +963,7 @@ sub htmlPrintHeader {
962
963
# ,-author=>'Torben Menke' # generates mailto:
963
964
,
964
965
-style => { -src => [ ' /style.css' , ' ./style-strava.css' ] }
965
- # -style => { -src => './style-strava.css' }
966
+ # -style => { -src => './style-strava.css' }
966
967
);
967
968
# CGI.pm doesn't support HTML5 DTD; replace the one it puts in.
968
969
$html =~ s { <!DOCTYPE.*?>} { <!DOCTYPE html>} s ;
Original file line number Diff line number Diff line change 43
43
44
44
# use local::lib;
45
45
use JSON::Create ' create_json' ;
46
+ use Date::WeekNumber qw/ cpan_week_number / ;
46
47
# use JSON::Create;
47
48
# use CGI::ProgressBar qw/:standard/;
48
49
@@ -334,6 +335,7 @@ sub fetchActivityListYear {
334
335
# 2018-10-02T08:10:49Z
335
336
$h {" x_start_h" } = sprintf " %.1f" , $4 + $5 / 60 + $6 / 3600;
336
337
$h {" x_date" } = " $1 -$2 -$3 " ;
338
+ $h {" x_week" } = cpan_week_number( $h {" x_date" } );
337
339
} # # end if ( $h{"start_date_local"...})
338
340
if ( $h {" average_speed" } and $h {" average_speed" } > 0 ) {
339
341
$h {" x_min/km" } = sprintf " %.2f" , 1 / $h {" average_speed" } / 60
You can’t perform that action at this time.
0 commit comments