From 9cf424df896f935d10d1b7a1ff9e0efb1e3a3a48 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 3 Jan 2021 19:32:26 +0100 Subject: update --- template/all.ht | 4 ++-- template/atom.ht | 16 ++++++++-------- template/front.ht | 8 ++++---- template/json.ht | 10 +++++----- template/monthly.ht | 4 ++-- template/single.ht | 4 ++-- trivium.el | 6 ++++-- 7 files changed, 27 insertions(+), 25 deletions(-) diff --git a/template/all.ht b/template/all.ht index 89813b9..484c27c 100644 --- a/template/all.ht +++ b/template/all.ht @@ -13,7 +13,7 @@

Trivium: grammar, logic, rhetoric by -Leah Neukirchen

+Leah Neukirchen $ self[:entries].each { |entry| @@ -29,7 +29,7 @@ $# class="entry-title"> $ }
-Copyright © 2008–2017 +Copyright © 2008–2021
diff --git a/template/atom.ht b/template/atom.ht index 637d08d..c4cdb89 100644 --- a/template/atom.ht +++ b/template/atom.ht @@ -2,18 +2,18 @@ Trivium - + href="https://leahneukirchen.org/trivium/" /> + Leah Neukirchen - http://chneukirchen.org/ - chneukirchen@gmail.com + https://leahneukirchen.org/ + leah@vuxu.org tag:chneukirchen.org,2008:trivium-feed trivium.rb
- Copyright © 2008-2017 Leah Neukirchen, chneukirchen@gmail.com + Copyright © 2008-2021 Leah Neukirchen, leah@vuxu.org Verbatim copying is permitted as long as this message is preserved.
@@ -23,11 +23,11 @@ $ self[:entries].each { |entry| ${entry[:title]} Leah Neukirchen - http://chneukirchen.org/ - chneukirchen@gmail.com + https://leahneukirchen.org/ + leah@vuxu.org + href="https://leahneukirchen.org/trivium/${entry[:id]}" /> tag:chneukirchen.org,2008:trivium-${entry[:id]} ${entry[:updated].iso8601} ${entry[:date].iso8601} diff --git a/template/front.ht b/template/front.ht index 77d8eee..2399c57 100644 --- a/template/front.ht +++ b/template/front.ht @@ -5,9 +5,9 @@ Trivium - - - + + + @@ -43,7 +43,7 @@ $ }
-Copyright © 2008–2017
+Copyright © 2008–2021
diff --git a/template/json.ht b/template/json.ht index 9ad93ca..647fa37 100644 --- a/template/json.ht +++ b/template/json.ht @@ -2,17 +2,17 @@ $ require 'json' $ f = { $ "version" => "https://jsonfeed.org/version/1", $ "title" => "Trivium", -$ "home_page_url" => "http://chneukirchen.org/trivium/", -$ "feed_url" => "http://chneukirchen.org/trivium/index.json", -$ "favicon" => "http://chneukirchen.org/trivium/trivium.ico", +$ "home_page_url" => "https://leahneukirchen.org/trivium/", +$ "feed_url" => "https://leahneukirchen.org/trivium/index.json", +$ "favicon" => "https://leahneukirchen.org/trivium/trivium.ico", $ "author" => { $ "name" => "Leah Neukirchen", -$ "url" => "http://chneukirchen.org/", +$ "url" => "https://leahneukirchen.org/", $ }, $ "items" => self[:entries].map { |entry| $ { $ "id" => "tag:chneukirchen.org,2008:trivium-#{entry[:id]}", -$ "url" => "http://chneukirchen.org/trivium/#{entry[:id]}", +$ "url" => "https://leahneukirchen.org/trivium/#{entry[:id]}", $ "title" => entry[:title], $ "date_published" => entry[:date].iso8601, $ "date_modified" => entry[:updated].iso8601, diff --git a/template/monthly.ht b/template/monthly.ht index 8ef98c5..773d498 100644 --- a/template/monthly.ht +++ b/template/monthly.ht @@ -12,7 +12,7 @@ $ if self[:entries].first[:next_by_month] $ end - + @@ -56,7 +56,7 @@ $ end
-Copyright © 2008–2017 +Copyright © 2008–2021
diff --git a/template/single.ht b/template/single.ht index bcb13cd..360130d 100644 --- a/template/single.ht +++ b/template/single.ht @@ -12,7 +12,7 @@ $ if self[:next_by_date] $ end - + @@ -44,7 +44,7 @@ $:{format self}
-Copyright © 2008–2017 +Copyright © 2008–2021
diff --git a/trivium.el b/trivium.el index 0cfe761..f067c6b 100644 --- a/trivium.el +++ b/trivium.el @@ -24,12 +24,14 @@ (defun trivium-update-blog () "Update the blog." (interactive) - (compile "cd .. ; ruby trivium.rb")) + (let ((process-connection-type nil)) + (compile "cd .. ; ruby trivium.rb"))) (defun trivium-upload-blog () "Upload the blog." (interactive) - (compile "cd .. ; ruby trivium.rb && ./upload")) + (let ((process-connection-type nil)) + (compile "cd .. ; ruby trivium.rb && ./upload"))) (defun trivium-insert-link-markup () "Insert a '.link'." -- cgit 1.4.1