From 4785160c13660c0bc89b643f65cf2f147e8e0200 Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Tue, 19 Jun 2018 21:54:27 -0400 Subject: [PATCH] Adding some missing licences. --- widgets/barchart/barchart.go | 14 ++++++++++++++ widgets/barchart/barchart_test.go | 14 ++++++++++++++ widgets/barchart/options.go | 14 ++++++++++++++ widgets/text/line_trim.go | 14 ++++++++++++++ widgets/text/line_trim_test.go | 14 ++++++++++++++ 5 files changed, 70 insertions(+) diff --git a/widgets/barchart/barchart.go b/widgets/barchart/barchart.go index 9d855db..cb6e25f 100644 --- a/widgets/barchart/barchart.go +++ b/widgets/barchart/barchart.go @@ -1,3 +1,17 @@ +// Copyright 2018 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + // Package barchart implements a widget that displays multiple bars displaying // values and their relative ratios. package barchart diff --git a/widgets/barchart/barchart_test.go b/widgets/barchart/barchart_test.go index aa7ab10..a7afc83 100644 --- a/widgets/barchart/barchart_test.go +++ b/widgets/barchart/barchart_test.go @@ -1,3 +1,17 @@ +// Copyright 2018 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package barchart import ( diff --git a/widgets/barchart/options.go b/widgets/barchart/options.go index 51db2fb..bfb2ae8 100644 --- a/widgets/barchart/options.go +++ b/widgets/barchart/options.go @@ -1,3 +1,17 @@ +// Copyright 2018 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package barchart // options.go contains configurable options for BarChart. diff --git a/widgets/text/line_trim.go b/widgets/text/line_trim.go index 295295a..d019a07 100644 --- a/widgets/text/line_trim.go +++ b/widgets/text/line_trim.go @@ -1,3 +1,17 @@ +// Copyright 2018 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package text import ( diff --git a/widgets/text/line_trim_test.go b/widgets/text/line_trim_test.go index 62bd100..3a628c6 100644 --- a/widgets/text/line_trim_test.go +++ b/widgets/text/line_trim_test.go @@ -1,3 +1,17 @@ +// Copyright 2018 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package text import (