summaryrefslogtreecommitdiffstats
path: root/emacsconf-schedule.el
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2023-09-26 12:55:51 -0400
committerSacha Chua <sacha@sachachua.com>2023-09-26 12:55:51 -0400
commit79a4998759f552f6fd2872f57860ff59cc9d6c07 (patch)
tree15a3aa7dc907ac10bcea21467eb99319241c75d5 /emacsconf-schedule.el
parent310273deebd3baeb537229d95d6fa8c615d46a0b (diff)
downloademacsconf-el-79a4998759f552f6fd2872f57860ff59cc9d6c07.tar.xz
emacsconf-el-79a4998759f552f6fd2872f57860ff59cc9d6c07.zip
Don't hardcode tracks when publishing
* emacsconf-publish.el (emacsconf-prepare-for-display): Rename to emacsconf-publish-prepare-for-display. (emacsconf-sort-by-track-then-schedule): Sort non-speaker talks last. (emacsconf-publish-nav-pages): Split conference into its own phase. (emacsconf-publish-info-pages): Publish the schedule. (emacsconf-publish-schedule): Don't hardcode tracks. (emacsconf-publish-sched-directive): Include duration.
Diffstat (limited to 'emacsconf-schedule.el')
-rw-r--r--emacsconf-schedule.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacsconf-schedule.el b/emacsconf-schedule.el
index 30cb110..644d818 100644
--- a/emacsconf-schedule.el
+++ b/emacsconf-schedule.el
@@ -376,7 +376,7 @@ Pairs with `emacsconf-schedule-dump-sexp'."
(defun emacsconf-schedule-svg (width height &optional info)
"Make the schedule SVG for INFO."
- (setq info (emacsconf-prepare-for-display (or info (emacsconf-get-talk-info))))
+ (setq info (or info (emacsconf-publish-prepare-for-display (emacsconf-get-talk-info))))
(let ((days (seq-group-by (lambda (o)
(format-time-string "%Y-%m-%d" (plist-get o :start-time) emacsconf-timezone))
(sort (seq-filter (lambda (o)