summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2023-09-03 15:51:06 -0400
committerSacha Chua <sacha@sachachua.com>2023-09-03 15:51:06 -0400
commit7a4117a8eefd6bfb33a7a9be0f16acaacea68d3f (patch)
treef8baeb8d7da3e17f089f0af377bd4fe74c07f7f4
parent46a027d939bf17c6f002c2a5b49cbf62e958c254 (diff)
downloademacsconf-el-7a4117a8eefd6bfb33a7a9be0f16acaacea68d3f.tar.xz
emacsconf-el-7a4117a8eefd6bfb33a7a9be0f16acaacea68d3f.zip
use :time instead of :duration?
-rw-r--r--emacsconf-publish.el26
-rw-r--r--emacsconf-schedule.el2
-rw-r--r--emacsconf-upcoming.el4
-rw-r--r--emacsconf.el7
4 files changed, 22 insertions, 17 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el
index d70524f..8de87bb 100644
--- a/emacsconf-publish.el
+++ b/emacsconf-publish.el
@@ -63,9 +63,9 @@
(defun emacsconf-publish-add-talk ()
"Add the current talk to the wiki."
(interactive)
- (emacsconf-publish-update-talk)
+ (emacsconf-publish-talk-page (emacsconf-get-talk-info-for-subtree))
(emacsconf-publish-info-pages)
- (emacsconf-publish-schedule)
+ (emacsconf-publish-talks-page)
(magit-status-setup-buffer emacsconf-directory))
(defun emacsconf-update-conf-html ()
@@ -377,8 +377,10 @@
(defun emacsconf-format-speaker-info (o)
(let ((extra-info (mapconcat #'identity
(delq nil (list
- (unless (string= (plist-get o :pronunciation) "nil") (plist-get o :pronunciation))
+ (unless (string= (plist-get o :pronunciation) "nil")
+ (emacsconf-surround "Pronunciation: " (plist-get o :pronunciation) ""))
(when (plist-get o :irc) (format "IRC: %s" (plist-get o :irc)))
+ (plist-get o :public-contact)
(when (plist-get o :public-email) (format "<mailto:%s>" (plist-get o :public-email)))))
", ")))
(concat (plist-get o :speakers-with-pronouns)
@@ -440,12 +442,12 @@ Talks that are pending review will not be published yet."
(_ t)))
(defun emacsconf-publish-talk-pages (emacsconf-info force)
- (interactive (list (emacsconf-get-talk-info) (> (prefix-numeric-value current-prefix-arg) 1)))
"Populate year/talks/*.md files.
These should include the nav and schedule files, which will be
rewritten as needed. After they are generated, they should be all
right to manually edit to include things like additional
resources."
+ (interactive (list (emacsconf-get-talk-info) (> (prefix-numeric-value current-prefix-arg) 1)))
(mapc (lambda (o) (emacsconf-publish-talk-page o force))
(emacsconf-filter-talks emacsconf-info)))
@@ -494,7 +496,7 @@ resources."
(append o
(list :format
(concat (or (plist-get o :video-time)
- (plist-get o :duration))
+ (plist-get o :time))
"-min talk"
(if (plist-get o :q-and-a)
(format " followed by %s Q&A (%s) "
@@ -513,9 +515,9 @@ resources."
(format "Discuss on IRC: [#%s](%s) \n" (plist-get o :channel)
(plist-get o :webchat-url))
:status-info
- (if (member emacsconf-publishing-phase '(program schedule)) (format "Status: %s \n" (plist-get o :status-label)) "")
+ (if (member emacsconf-publishing-phase '(cfp program schedule)) (format "Status: %s \n" (plist-get o :status-label)) "")
:schedule-info
- (if (and (member emacsconf-publishing-phase '(program schedule))
+ (if (and (member emacsconf-publishing-phase '(cfp program schedule))
(not (emacsconf-talk-all-done-p o))
(not (string= (plist-get o :status) "CANCELLED")))
(let ((start (org-timestamp-to-time (org-timestamp-split-range timestamp)))
@@ -715,6 +717,10 @@ ${pad-info}${irc-info}${status-info}${schedule-info}\n"
""))
"")
(emacsconf-format-email-questions-and-comments talk) "\n"
+ (if (eq emacsconf-publishing-phase 'cfp)
+ (format "\n----\nGot an idea for an EmacsConf talk or session? We'd love to hear from you! Check out the [[Call for Participation|/%s/cfp]] for details.\n" emacsconf-year)
+ ""
+ )
"\n\n<!-- End of emacsconf-publish-after-page -->\n")))
(defun emacsconf-sort-by-track-then-schedule (a b)
@@ -798,7 +804,7 @@ Back to the [[talks]] \n"
(if (null (plist-get o :slug))
(format "<tr><td colspan=\"3\">%s</td></tr>" (emacsconf-format-talk-link o))
(format "<tr><td>%s</td><td>%s</td><td>%s</td><tr>"
- (plist-get o :duration)
+ (plist-get o :time)
(emacsconf-format-talk-link o)
(plist-get o :speakers))))
info "\n"))))))
@@ -968,9 +974,9 @@ Entries are sorted chronologically, with different tracks interleaved."
(format "<div>%d talks total: %d captioned (%d min), %d waiting for captions (%d min)</div>"
(length talks)
(length captioned)
- (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :duration))) captioned))
+ (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :time))) captioned))
(length received)
- (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :duration)))
+ (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :time)))
received)))))
(defun emacsconf-publish-sched-directive (o)
diff --git a/emacsconf-schedule.el b/emacsconf-schedule.el
index 7ce4fb5..4464014 100644
--- a/emacsconf-schedule.el
+++ b/emacsconf-schedule.el
@@ -448,7 +448,7 @@ Each function should take the info and manipulate it as needed, returning the ne
(unless (plist-get o :buffer)
(plist-put o :buffer
(number-to-string
- (if (string-match "live" (plist-get o :q-and-a))
+ (if (string-match "live" (or (plist-get o :q-and-a) "live"))
emacsconf-schedule-default-buffer-minutes-for-live-q-and-a
emacsconf-schedule-default-buffer-minutes)))))
o)
diff --git a/emacsconf-upcoming.el b/emacsconf-upcoming.el
index b94dc00..309d2d1 100644
--- a/emacsconf-upcoming.el
+++ b/emacsconf-upcoming.el
@@ -94,7 +94,7 @@
(org-entry-put (point) "PRESENT" (or (plist-get info :present) "?"))
(org-entry-put (point) "DURATION"
(or (plist-get info :video-duration)
- (concat "~ " (plist-get info :duration))))
+ (concat "~ " (plist-get info :time))))
(org-entry-put (point) "BUFFER"
(format "%s (ending ~ %s)"
(plist-get info :buffer)
@@ -104,7 +104,7 @@
(+
(time-to-seconds
(org-timestamp-to-time (org-timestamp-split-range (org-timestamp-from-string (plist-get info :scheduled)))))
- (* 60 (string-to-number (plist-get info :duration)))
+ (* 60 (string-to-number (plist-get info :time)))
(* 60 (string-to-number (plist-get info :buffer)))))
emacsconf-timezone)))
(org-entry-put (point) "Q_AND_A"
diff --git a/emacsconf.el b/emacsconf.el
index 46c2b0c..a9d6874 100644
--- a/emacsconf.el
+++ b/emacsconf.el
@@ -392,7 +392,6 @@
(:public-email "PUBLIC_EMAIL")
(:emergency "EMERGENCY")
(:buffer "BUFFER")
- (:duration "TIME")
(:min-time "MIN_TIME")
(:max-time "MAX_TIME")
(:availability "AVAILABILITY")
@@ -623,7 +622,7 @@
(unless (or (null (plist-get o :status))
(null (plist-get o :email))
(string= (plist-get o :status) "CANCELLED")
- (string-match "after" (plist-get o :q-and-a)))
+ (string-match "after" (or (plist-get o :q-and-a) "")))
(if (null (plist-get o :video-file))
(progn
(plist-put o :live-time (plist-get o :start-time))
@@ -920,9 +919,9 @@
(kill-new
(format "%d captioned (%d minutes), %d received and waiting to be captioned (%d minutes)"
(length (emacsconf-collect-field-for-status "CAPTIONED" :title))
- (apply '+ (seq-map 'string-to-number (conf-collect-field-for-status "CAPTIONED" :duration)))
+ (apply '+ (seq-map 'string-to-number (conf-collect-field-for-status "CAPTIONED" :time)))
(length (emacsconf-collect-field-for-status "PREREC_RECEIVED" :title))
- (apply '+ (seq-map 'string-to-number (conf-collect-field-for-status "PREREC_RECEIVED" :duration)))))))
+ (apply '+ (seq-map 'string-to-number (conf-collect-field-for-status "PREREC_RECEIVED" :time)))))))
;; Timezones
(defvar emacsconf-date "2022-12-03" "Starting date of EmacsConf.")