From 8509727fe862d06b3371651454fcb1af54b4ab21 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Thu, 10 Dec 2015 15:19:38 -0700 Subject: =?UTF-8?q?Add=20copyright=20header=20to=20that=20source=20files?= =?UTF-8?q?=20that=20don=E2=80=99t=20have=20one.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See #1646 --- hugolib/benchmark_test.go | 13 +++++++++++++ hugolib/datafiles_test.go | 13 +++++++++++++ hugolib/handler_test.go | 13 +++++++++++++ hugolib/hugo.go | 13 +++++++++++++ hugolib/menu_test.go | 13 +++++++++++++ hugolib/pageCache_test.go | 13 +++++++++++++ hugolib/pageGroup_test.go | 13 +++++++++++++ hugolib/pageSort_test.go | 13 +++++++++++++ hugolib/page_permalink_test.go | 13 +++++++++++++ hugolib/page_taxonomy_test.go | 13 +++++++++++++ hugolib/page_test.go | 13 +++++++++++++ hugolib/page_time_integration_test.go | 13 +++++++++++++ hugolib/pagination_test.go | 13 +++++++++++++ hugolib/path_separators_test.go | 13 +++++++++++++ hugolib/path_separators_windows_test.go | 13 +++++++++++++ hugolib/permalinks.go | 13 +++++++++++++ hugolib/permalinks_test.go | 13 +++++++++++++ hugolib/planner.go | 13 +++++++++++++ hugolib/rss_test.go | 13 +++++++++++++ hugolib/scratch_test.go | 13 +++++++++++++ hugolib/shortcode_test.go | 13 +++++++++++++ hugolib/shortcodeparser_test.go | 13 +++++++++++++ hugolib/siteJSONEncode_test.go | 13 +++++++++++++ hugolib/site_show_plan_test.go | 13 +++++++++++++ hugolib/site_test.go | 13 +++++++++++++ hugolib/site_url_test.go | 13 +++++++++++++ hugolib/siteinfo_test.go | 13 +++++++++++++ hugolib/sitemap.go | 13 +++++++++++++ hugolib/sitemap_test.go | 13 +++++++++++++ hugolib/summary.go | 13 +++++++++++++ hugolib/taxonomy_test.go | 13 +++++++++++++ 31 files changed, 403 insertions(+) (limited to 'hugolib') diff --git a/hugolib/benchmark_test.go b/hugolib/benchmark_test.go index cc1b3cdf5..507db1f5b 100644 --- a/hugolib/benchmark_test.go +++ b/hugolib/benchmark_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/datafiles_test.go b/hugolib/datafiles_test.go index 84eb70bdf..0f8fe8b5d 100644 --- a/hugolib/datafiles_test.go +++ b/hugolib/datafiles_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/handler_test.go b/hugolib/handler_test.go index d44a373b4..8f206f75f 100644 --- a/hugolib/handler_test.go +++ b/hugolib/handler_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/hugo.go b/hugolib/hugo.go index da08b93b9..0a912a7b4 100644 --- a/hugolib/hugo.go +++ b/hugolib/hugo.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/menu_test.go b/hugolib/menu_test.go index 1b016bf5b..c7701e5a7 100644 --- a/hugolib/menu_test.go +++ b/hugolib/menu_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/pageCache_test.go b/hugolib/pageCache_test.go index 6e48c63cf..9de09503c 100644 --- a/hugolib/pageCache_test.go +++ b/hugolib/pageCache_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/pageGroup_test.go b/hugolib/pageGroup_test.go index 2de07bc9d..18bd92df4 100644 --- a/hugolib/pageGroup_test.go +++ b/hugolib/pageGroup_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/pageSort_test.go b/hugolib/pageSort_test.go index 20c025961..1707730c4 100644 --- a/hugolib/pageSort_test.go +++ b/hugolib/pageSort_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/page_permalink_test.go b/hugolib/page_permalink_test.go index 2450300ad..eae174517 100644 --- a/hugolib/page_permalink_test.go +++ b/hugolib/page_permalink_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/page_taxonomy_test.go b/hugolib/page_taxonomy_test.go index 610696592..d463e5800 100644 --- a/hugolib/page_taxonomy_test.go +++ b/hugolib/page_taxonomy_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/page_test.go b/hugolib/page_test.go index df7daede4..1e5f9e969 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/page_time_integration_test.go b/hugolib/page_time_integration_test.go index 9401a8589..a3bbafe0c 100644 --- a/hugolib/page_time_integration_test.go +++ b/hugolib/page_time_integration_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/pagination_test.go b/hugolib/pagination_test.go index b806a10e0..9b311cb34 100644 --- a/hugolib/pagination_test.go +++ b/hugolib/pagination_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/path_separators_test.go b/hugolib/path_separators_test.go index b3c7c2d9c..013837279 100644 --- a/hugolib/path_separators_test.go +++ b/hugolib/path_separators_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/path_separators_windows_test.go b/hugolib/path_separators_windows_test.go index 8b2cbacfe..2fe07b3a4 100644 --- a/hugolib/path_separators_windows_test.go +++ b/hugolib/path_separators_windows_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/permalinks.go b/hugolib/permalinks.go index 81416e7e8..f6f2bd80d 100644 --- a/hugolib/permalinks.go +++ b/hugolib/permalinks.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/permalinks_test.go b/hugolib/permalinks_test.go index 7f8a524e7..3c6fb2eda 100644 --- a/hugolib/permalinks_test.go +++ b/hugolib/permalinks_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/planner.go b/hugolib/planner.go index f2f19f3fa..8dd82c0f5 100644 --- a/hugolib/planner.go +++ b/hugolib/planner.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/rss_test.go b/hugolib/rss_test.go index 90429d32f..3a9a0cf07 100644 --- a/hugolib/rss_test.go +++ b/hugolib/rss_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/scratch_test.go b/hugolib/scratch_test.go index b49d8982b..1ab0e1a23 100644 --- a/hugolib/scratch_test.go +++ b/hugolib/scratch_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 305cc1236..ce655770e 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/shortcodeparser_test.go b/hugolib/shortcodeparser_test.go index 46b843936..a5d7453cc 100644 --- a/hugolib/shortcodeparser_test.go +++ b/hugolib/shortcodeparser_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/siteJSONEncode_test.go b/hugolib/siteJSONEncode_test.go index c040eb01b..9ba4eaeb3 100644 --- a/hugolib/siteJSONEncode_test.go +++ b/hugolib/siteJSONEncode_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/site_show_plan_test.go b/hugolib/site_show_plan_test.go index 4ee53e4ab..74b49082f 100644 --- a/hugolib/site_show_plan_test.go +++ b/hugolib/site_show_plan_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/site_test.go b/hugolib/site_test.go index 705abe0c1..1405210cc 100644 --- a/hugolib/site_test.go +++ b/hugolib/site_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/site_url_test.go b/hugolib/site_url_test.go index f561369ff..f25b5dfaf 100644 --- a/hugolib/site_url_test.go +++ b/hugolib/site_url_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/siteinfo_test.go b/hugolib/siteinfo_test.go index fe7b41d68..4d075dc4d 100644 --- a/hugolib/siteinfo_test.go +++ b/hugolib/siteinfo_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/sitemap.go b/hugolib/sitemap.go index a8e38fe18..3f3a28cd2 100644 --- a/hugolib/sitemap.go +++ b/hugolib/sitemap.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/sitemap_test.go b/hugolib/sitemap_test.go index 2e24e4c47..7bc16b482 100644 --- a/hugolib/sitemap_test.go +++ b/hugolib/sitemap_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( diff --git a/hugolib/summary.go b/hugolib/summary.go index 938c77a23..aaa552812 100644 --- a/hugolib/summary.go +++ b/hugolib/summary.go @@ -1 +1,14 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go index 7f245d0a9..047263e78 100644 --- a/hugolib/taxonomy_test.go +++ b/hugolib/taxonomy_test.go @@ -1,3 +1,16 @@ +// Copyright 2015 The Hugo Authors. All rights reserved. +// +// 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 hugolib import ( -- cgit v1.2.3