summaryrefslogtreecommitdiffstats
path: root/hugolib
diff options
context:
space:
mode:
authorSteve Francia <steve.francia@gmail.com>2015-11-23 22:16:36 -0500
committerSteve Francia <steve.francia@gmail.com>2015-11-23 22:16:36 -0500
commitf045d7a611b5c609d44e894b3c1165ce24b67776 (patch)
treed5d969e5c0c8fa9e7b2426c4ad8888228d6039a9 /hugolib
parentb00771ca14ef0b07a1eb6cf71e2511e12b02d0b0 (diff)
Change the license to Apache 2.0
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/author.go4
-rw-r--r--hugolib/handler_base.go4
-rw-r--r--hugolib/handler_file.go4
-rw-r--r--hugolib/handler_meta.go4
-rw-r--r--hugolib/handler_page.go4
-rw-r--r--hugolib/media.go4
-rw-r--r--hugolib/menu.go4
-rw-r--r--hugolib/node.go4
-rw-r--r--hugolib/page.go4
-rw-r--r--hugolib/pageCache.go4
-rw-r--r--hugolib/pageGroup.go4
-rw-r--r--hugolib/pageSort.go4
-rw-r--r--hugolib/pagesPrevNext.go4
-rw-r--r--hugolib/pagesPrevNext_test.go4
-rw-r--r--hugolib/pagination.go4
-rw-r--r--hugolib/scratch.go4
-rw-r--r--hugolib/shortcode.go4
-rw-r--r--hugolib/shortcodeparser.go4
-rw-r--r--hugolib/site.go4
-rw-r--r--hugolib/taxonomy.go4
20 files changed, 40 insertions, 40 deletions
diff --git a/hugolib/author.go b/hugolib/author.go
index 8cc52bec5..c581bc3ec 100644
--- a/hugolib/author.go
+++ b/hugolib/author.go
@@ -1,9 +1,9 @@
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/handler_base.go b/hugolib/handler_base.go
index f74409166..a4fe1af78 100644
--- a/hugolib/handler_base.go
+++ b/hugolib/handler_base.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/handler_file.go b/hugolib/handler_file.go
index 0d3a05ecf..33190099e 100644
--- a/hugolib/handler_file.go
+++ b/hugolib/handler_file.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/handler_meta.go b/hugolib/handler_meta.go
index 1e0d760c5..ac8671147 100644
--- a/hugolib/handler_meta.go
+++ b/hugolib/handler_meta.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/handler_page.go b/hugolib/handler_page.go
index 0f0e3ca60..49edee538 100644
--- a/hugolib/handler_page.go
+++ b/hugolib/handler_page.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/media.go b/hugolib/media.go
index 38344ebe3..10ec9ecf1 100644
--- a/hugolib/media.go
+++ b/hugolib/media.go
@@ -1,9 +1,9 @@
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/menu.go b/hugolib/menu.go
index d7a72d4ee..f964e72f7 100644
--- a/hugolib/menu.go
+++ b/hugolib/menu.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/node.go b/hugolib/node.go
index c335b72df..020937b3e 100644
--- a/hugolib/node.go
+++ b/hugolib/node.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/page.go b/hugolib/page.go
index dc092a464..a77cb01b5 100644
--- a/hugolib/page.go
+++ b/hugolib/page.go
@@ -1,9 +1,9 @@
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pageCache.go b/hugolib/pageCache.go
index c6d63dfab..e8810de2e 100644
--- a/hugolib/pageCache.go
+++ b/hugolib/pageCache.go
@@ -1,9 +1,9 @@
// Copyright © 2015 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pageGroup.go b/hugolib/pageGroup.go
index 955e76b65..e01d0cdca 100644
--- a/hugolib/pageGroup.go
+++ b/hugolib/pageGroup.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pageSort.go b/hugolib/pageSort.go
index b536c2339..6f5cb7b6b 100644
--- a/hugolib/pageSort.go
+++ b/hugolib/pageSort.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pagesPrevNext.go b/hugolib/pagesPrevNext.go
index 4ffc11653..b8124eb04 100644
--- a/hugolib/pagesPrevNext.go
+++ b/hugolib/pagesPrevNext.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pagesPrevNext_test.go b/hugolib/pagesPrevNext_test.go
index 4bcfd6e18..2a638fb34 100644
--- a/hugolib/pagesPrevNext_test.go
+++ b/hugolib/pagesPrevNext_test.go
@@ -1,9 +1,9 @@
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/pagination.go b/hugolib/pagination.go
index acd406ed1..c02289dbc 100644
--- a/hugolib/pagination.go
+++ b/hugolib/pagination.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/scratch.go b/hugolib/scratch.go
index 16d1c1440..601af6b78 100644
--- a/hugolib/scratch.go
+++ b/hugolib/scratch.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go
index 0b2e9f78e..0e3565b67 100644
--- a/hugolib/shortcode.go
+++ b/hugolib/shortcode.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/shortcodeparser.go b/hugolib/shortcodeparser.go
index bef8ed84f..fb3c3b0c2 100644
--- a/hugolib/shortcodeparser.go
+++ b/hugolib/shortcodeparser.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/site.go b/hugolib/site.go
index 2e07091fb..d7c9e4a56 100644
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -1,9 +1,9 @@
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,
diff --git a/hugolib/taxonomy.go b/hugolib/taxonomy.go
index 1fd34cadb..5ca39e710 100644
--- a/hugolib/taxonomy.go
+++ b/hugolib/taxonomy.go
@@ -1,9 +1,9 @@
// Copyright © 2013 Steve Francia <spf@spf13.com>.
//
-// Licensed under the Simple Public License, Version 2.0 (the "License");
+// 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://opensource.org/licenses/Simple-2.0
+// 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,