aboutsummaryrefslogtreecommitdiff
path: root/module/output/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/html.scm')
-rw-r--r--module/output/html.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 4ed44587..baa2915f 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -180,8 +180,8 @@
(define (create-top-block start-date end-date ev)
- ;; TODO
- (define total-length (exact->inexact (/ (date-difference (date+ end-date (date day: 1)) start-date) 3600)))
+ ;; NOTE be vary of api changes to date-diffenence
+ (define total-length (* 24 (day (date-difference (date+ end-date (date day: 1)) start-date))))
(define style
(format #f "top:~,3f%;height:~,3f%;left:~,3f%;width:~,3f%;"
@@ -274,9 +274,8 @@
;; @end example
;; date, date → int
(define (days-between start-date end-date)
- ;; TODO do rounding better
- (inexact->exact (ceiling (1+ (exact->inexact (/ (date-difference end-date start-date)
- 86400))))))
+ ;; TODO be vary if date-difference changes again
+ (1+ (day (date-difference end-date start-date))))
;; date, date → [list date]
(define (date-range start end)