diff options
author | Nick White <git@njw.name> | 2020-03-13 16:51:31 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-03-13 16:51:31 +0000 |
commit | 97f27954532d85b0fe39ce639337c5d0b59433af (patch) | |
tree | 2cfd1ee82f5c616421f01bf16f85e71c2a709f25 | |
parent | 1ec81f95b77c5c5b891403e250156c6bf381f13e (diff) |
Add copyright statements to each file
-rw-r--r-- | cmd/avg-lines/html.go | 4 | ||||
-rw-r--r-- | cmd/avg-lines/main.go | 4 | ||||
-rw-r--r-- | cmd/boxtotxt/main.go | 4 | ||||
-rw-r--r-- | cmd/bucket-lines/bucket.go | 4 | ||||
-rw-r--r-- | cmd/bucket-lines/main.go | 4 | ||||
-rw-r--r-- | cmd/dehyphenate/main.go | 4 | ||||
-rw-r--r-- | cmd/eeboxmltohocr/main.go | 4 | ||||
-rw-r--r-- | cmd/fonttobytes/main.go | 4 | ||||
-rw-r--r-- | cmd/hocrtotxt/main.go | 4 | ||||
-rw-r--r-- | cmd/pare-gt/main.go | 4 | ||||
-rw-r--r-- | cmd/pare-gt/main_test.go | 4 | ||||
-rw-r--r-- | cmd/pgconf/main.go | 4 | ||||
-rw-r--r-- | pkg/hocr/hocr.go | 4 | ||||
-rw-r--r-- | pkg/hocr/lines.go | 4 | ||||
-rw-r--r-- | pkg/line/line.go | 4 | ||||
-rw-r--r-- | pkg/prob/prob.go | 4 |
16 files changed, 64 insertions, 0 deletions
diff --git a/cmd/avg-lines/html.go b/cmd/avg-lines/html.go index 97d8ec9..1927852 100644 --- a/cmd/avg-lines/html.go +++ b/cmd/avg-lines/html.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/avg-lines/main.go b/cmd/avg-lines/main.go index f7cedab..a32f5ce 100644 --- a/cmd/avg-lines/main.go +++ b/cmd/avg-lines/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/boxtotxt/main.go b/cmd/boxtotxt/main.go index 058eb05..c8e4c02 100644 --- a/cmd/boxtotxt/main.go +++ b/cmd/boxtotxt/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/bucket-lines/bucket.go b/cmd/bucket-lines/bucket.go index 7b6fc4f..cd93c15 100644 --- a/cmd/bucket-lines/bucket.go +++ b/cmd/bucket-lines/bucket.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/bucket-lines/main.go b/cmd/bucket-lines/main.go index af81b44..64ebffc 100644 --- a/cmd/bucket-lines/main.go +++ b/cmd/bucket-lines/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/dehyphenate/main.go b/cmd/dehyphenate/main.go index b2bd6f9..58b735e 100644 --- a/cmd/dehyphenate/main.go +++ b/cmd/dehyphenate/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/eeboxmltohocr/main.go b/cmd/eeboxmltohocr/main.go index 2761cd9..aaad3a5 100644 --- a/cmd/eeboxmltohocr/main.go +++ b/cmd/eeboxmltohocr/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/fonttobytes/main.go b/cmd/fonttobytes/main.go index 8310e0f..52883cb 100644 --- a/cmd/fonttobytes/main.go +++ b/cmd/fonttobytes/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/hocrtotxt/main.go b/cmd/hocrtotxt/main.go index 6716a9e..c3eb0f4 100644 --- a/cmd/hocrtotxt/main.go +++ b/cmd/hocrtotxt/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/pare-gt/main.go b/cmd/pare-gt/main.go index a4d9600..1180607 100644 --- a/cmd/pare-gt/main.go +++ b/cmd/pare-gt/main.go @@ -1,3 +1,7 @@ +// Copyright 2020 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/pare-gt/main_test.go b/cmd/pare-gt/main_test.go index c381a86..1edc58c 100644 --- a/cmd/pare-gt/main_test.go +++ b/cmd/pare-gt/main_test.go @@ -1,3 +1,7 @@ +// Copyright 2020 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/cmd/pgconf/main.go b/cmd/pgconf/main.go index dbc6af8..41b00f0 100644 --- a/cmd/pgconf/main.go +++ b/cmd/pgconf/main.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package main import ( diff --git a/pkg/hocr/hocr.go b/pkg/hocr/hocr.go index fa8ae8e..9dea49c 100644 --- a/pkg/hocr/hocr.go +++ b/pkg/hocr/hocr.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package hocr import ( diff --git a/pkg/hocr/lines.go b/pkg/hocr/lines.go index b3db161..1387574 100644 --- a/pkg/hocr/lines.go +++ b/pkg/hocr/lines.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package hocr // TODO: Parse line name to zero pad line numbers, so they can diff --git a/pkg/line/line.go b/pkg/line/line.go index d4e3e44..b1e9021 100644 --- a/pkg/line/line.go +++ b/pkg/line/line.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package line import ( diff --git a/pkg/prob/prob.go b/pkg/prob/prob.go index 8bdb3d5..7a6979a 100644 --- a/pkg/prob/prob.go +++ b/pkg/prob/prob.go @@ -1,3 +1,7 @@ +// Copyright 2019 Nick White. +// Use of this source code is governed by the GPLv3 +// license that can be found in the LICENSE file. + package prob import ( |