summaryrefslogtreecommitdiffstats
path: root/emacsconf.el
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2021-12-17 00:51:42 -0500
committerSacha Chua <sacha@sachachua.com>2021-12-17 00:51:42 -0500
commit014312de7356d64a481e351b31411ea822c6acbb (patch)
tree0f109058b81b5e392765bbc6a1fab21ca1361ed3 /emacsconf.el
parentba37c841dfbe8bec8e303055a40a6bc30c6cab57 (diff)
downloademacsconf-el-014312de7356d64a481e351b31411ea822c6acbb.tar.xz
emacsconf-el-014312de7356d64a481e351b31411ea822c6acbb.zip
handle compressed56, export to CSV
Diffstat (limited to 'emacsconf.el')
-rw-r--r--emacsconf.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacsconf.el b/emacsconf.el
index 357b271..5c5ad60 100644
--- a/emacsconf.el
+++ b/emacsconf.el
@@ -38,6 +38,12 @@
"Directory where the wiki files are."
:group 'emacsconf
:type 'directory)
+
+
+(defcustom emacsconf-timezone "America/Toronto" "Main timezone."
+ :group 'emacsconf
+ :type 'string)
+
(defcustom emacsconf-timezones '("America/Toronto" "America/Los_Angeles" "UTC" "Europe/Paris" "Europe/Athens" "Asia/Kolkata" "Asia/Singapore" "Asia/Tokyo") "List of timezones."
:group 'emacsconf
:type '(repeat string))
@@ -263,5 +269,8 @@
string t t)))
string))
+(defun emacsconf-public-talks (info)
+ (seq-filter (lambda (f) (plist-get f :public)) info))
+
(provide 'emacsconf)
;;; emacsconf.el ends here