summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-05-28 02:29:46 -0400
committersiddharth ravikumar <s@ricketyspace.net>2022-05-28 02:29:46 -0400
commit45a802e845f19c2934141df77e8ab82c21a41109 (patch)
treeeee0a8b92bbf0afc2f4c068f7ae6e75bd53e31e5
parent1bbdb048da022cba2b0e9e3671d065689f1af893 (diff)
update name in copyright
Use full name.
-rw-r--r--Dockerfile2
-rw-r--r--LICENSE2
-rw-r--r--Makefile2
-rwxr-xr-xbin/image2
-rwxr-xr-xbin/image-push2
-rw-r--r--client/client.go2
-rw-r--r--client/client_test.go2
-rw-r--r--main.go2
-rw-r--r--nws/nws.go2
-rw-r--r--nws/nws_test.go2
-rw-r--r--static/peach.css2
-rw-r--r--templates/weather.tmpl2
-rw-r--r--version/version.go2
13 files changed, 13 insertions, 13 deletions
diff --git a/Dockerfile b/Dockerfile
index bb63bf2..dc4a89e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: ISC
-# Copyright © 2022 siddharth <s@ricketyspace.net>
+# Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
FROM golang:1.18.2
diff --git a/LICENSE b/LICENSE
index d84fbed..f5fee25 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright © 2022 siddharth <s@ricketyspace.net>
+Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted, provided that the
diff --git a/Makefile b/Makefile
index ed32eef..5aeb0c4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: ISC
-# Copyright © 2021 siddharth <s@ricketyspace.net>
+# Copyright © 2021 siddharth ravikumar <s@ricketyspace.net>
MOD=ricketyspace.net/peach
diff --git a/bin/image b/bin/image
index 8a98eb4..b03740f 100755
--- a/bin/image
+++ b/bin/image
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
# SPDX-License-Identifier: ISC
-# Copyright © 2022 siddharth <s@ricketyspace.net>
+# Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
REPO="public.ecr.aws/w3h8c8i8/peach"
TAG=$(date +%Y%m%d%H%M%S)
diff --git a/bin/image-push b/bin/image-push
index 1eb6b56..5f572d4 100755
--- a/bin/image-push
+++ b/bin/image-push
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
# SPDX-License-Identifier: ISC
-# Copyright © 2022 siddharth <s@ricketyspace.net>
+# Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
REPO="public.ecr.aws/w3h8c8i8/peach"
diff --git a/client/client.go b/client/client.go
index e5678c7..3381e44 100644
--- a/client/client.go
+++ b/client/client.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
// Thin HTTP client wrapper.
diff --git a/client/client_test.go b/client/client_test.go
index 56a79c0..ea2a7b5 100644
--- a/client/client_test.go
+++ b/client/client_test.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package client
diff --git a/main.go b/main.go
index 63cce0f..574c72f 100644
--- a/main.go
+++ b/main.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package main
diff --git a/nws/nws.go b/nws/nws.go
index 93c57ef..5b68169 100644
--- a/nws/nws.go
+++ b/nws/nws.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
// Functions for accessing the National Weather Service API.
diff --git a/nws/nws_test.go b/nws/nws_test.go
index fde4ea4..9dcd53e 100644
--- a/nws/nws_test.go
+++ b/nws/nws_test.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package nws
diff --git a/static/peach.css b/static/peach.css
index 6d1589d..63210fe 100644
--- a/static/peach.css
+++ b/static/peach.css
@@ -1,5 +1,5 @@
/**
- * Copyright © 2022 siddharth <s@ricketyspace.net>
+ * Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
* SPDX-License-Identifier: ISC
*/
diff --git a/templates/weather.tmpl b/templates/weather.tmpl
index 9db2689..5fac41e 100644
--- a/templates/weather.tmpl
+++ b/templates/weather.tmpl
@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<title>peach - {{.Location}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="author" content="siddharth">
+ <meta name="author" content="siddharth ravikumar">
<link rel="preload" href="/static/peach.css" as="style" />
<style>@import url("/static/peach.css");</style>
</head>
diff --git a/version/version.go b/version/version.go
index e80f75a..3f490e7 100644
--- a/version/version.go
+++ b/version/version.go
@@ -1,4 +1,4 @@
-// Copyright © 2022 siddharth <s@ricketyspace.net>
+// Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package version