From 852304f6bc479a8279eebb3f011c2b15ec946d89 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 14 Apr 2024 15:33:19 -0600 Subject: Include my middle initial --- index.atom.erb | 4 ++-- page.html.erb | 2 +- post-commit | 2 +- util.rb | 8 ++++---- write-atomic | 2 +- write-ifchanged | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/index.atom.erb b/index.atom.erb index a5e1586..ca47602 100644 --- a/index.atom.erb +++ b/index.atom.erb @@ -1,12 +1,12 @@ - Luke Shumaker's Web Log + Luke T. Shumaker's Web Log <%= @pages.map{|p|p.date}.sort.last.rfc3339 %> - <%= Person.new("Luke Shumaker").atom %> + <%= Person.new("Luke T. Shumaker").atom %> https://lukeshu.com/blog/ <% @pages.sort_by{|p| p.date}.reverse.each do |page| %> diff --git a/page.html.erb b/page.html.erb index 75c576f..71378a5 100644 --- a/page.html.erb +++ b/page.html.erb @@ -2,7 +2,7 @@ - <%= @page.title %> — Luke Shumaker + <%= @page.title %> — Luke T. Shumaker diff --git a/post-commit b/post-commit index b8f816a..6aa2e4a 100755 --- a/post-commit +++ b/post-commit @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2016-2017 Luke Shumaker +# Copyright 2016-2017 Luke T. Shumaker set -e branch=$(git name-rev --name-only HEAD) diff --git a/util.rb b/util.rb index 5250083..0611d27 100644 --- a/util.rb +++ b/util.rb @@ -8,10 +8,10 @@ $license_urls = { 'WTFPL-2' => "http://www.wtfpl.net/txt/copying/", } $person_uris = { - "Luke Shumaker" => "https://lukeshu.com/", + "Luke T. Shumaker" => "https://lukeshu.com/", } $person_emails = { - "Luke Shumaker" => "lukeshu@lukeshu.com", + "Luke T. Shumaker" => "lukeshu@lukeshu.com", } class Person @@ -78,7 +78,7 @@ class Page end def title ; @title ||= pandoc['title'] || input.split("\n",2).first ; end - def author ; @author ||= Person.new( pandoc['author'] || "Luke Shumaker") ; end + def author ; @author ||= Person.new( pandoc['author'] || "Luke T. Shumaker") ; end def license ; @license ||= License.new(pandoc['license'] || "CC BY-SA-3.0") ; end def date ; @date ||= Date.parse(pandoc['date']) unless pandoc['date'].nil? ; end def slug ; @slug ||= infile.sub(/\..*$/,'').sub(/^.*\//,'') ; end @@ -90,7 +90,7 @@ class Page end def breadcrumbs - @breadcrumbs ||= 'Luke Shumaker » ' + ( (slug == 'index') ? "blog" : "blog » #{slug}" ) + @breadcrumbs ||= 'Luke T. Shumaker » ' + ( (slug == 'index') ? "blog" : "blog » #{slug}" ) end end diff --git a/write-atomic b/write-atomic index efb2551..d28f001 100755 --- a/write-atomic +++ b/write-atomic @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (C) 2015-2016 Luke Shumaker +# Copyright (C) 2015-2016 Luke T. Shumaker # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/write-ifchanged b/write-ifchanged index 185ceb0..1ca1128 100755 --- a/write-ifchanged +++ b/write-ifchanged @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (C) 2015 Luke Shumaker +# Copyright (C) 2015 Luke T. Shumaker # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by -- cgit v1.1-4-g5e80