diff options
| -rw-r--r-- | index.atom.erb | 4 | ||||
| -rw-r--r-- | page.html.erb | 2 | ||||
| -rwxr-xr-x | post-commit | 2 | ||||
| -rw-r--r-- | util.rb | 8 | ||||
| -rwxr-xr-x | write-atomic | 2 | ||||
| -rwxr-xr-x | 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 @@  <?xml version="1.0" encoding="utf-8"?>  <feed xmlns="http://www.w3.org/2005/Atom"> -	<title>Luke Shumaker's Web Log</title> +	<title>Luke T. Shumaker's Web Log</title>  	<link rel="self"      type="application/atom+xml" href="./index.atom"/>  	<link rel="alternate" type="text/html"            href="./"/>  	<link rel="alternate" type="text/markdown"        href="./index.md"/>  	<updated><%= @pages.map{|p|p.date}.sort.last.rfc3339 %></updated> -	<author><%= Person.new("Luke Shumaker").atom %></author> +	<author><%= Person.new("Luke T. Shumaker").atom %></author>  	<id>https://lukeshu.com/blog/</id>  	<% @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 @@  <html lang="en">  <head>    <meta charset="utf-8"> -  <title><%= @page.title %> — Luke Shumaker</title> +  <title><%= @page.title %> — Luke T. Shumaker</title>    <link rel="stylesheet" href="assets/style.css">    <link rel="alternate" type="application/atom+xml" href="./index.atom" name="web log entries"/>  </head> 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) @@ -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 ||= '<a href="/">Luke Shumaker</a> » ' + ( (slug == 'index') ? "blog" : "<a href=/blog>blog</a> » #{slug}" ) +		@breadcrumbs ||= '<a href="/">Luke T. Shumaker</a> » ' + ( (slug == 'index') ? "blog" : "<a href=/blog>blog</a> » #{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 | 
