Added copyright notices
authorMatt Lee <mattl@cnuk.org>
Sun, 27 Mar 2011 22:47:23 +0000 (18:47 -0400)
committerMatt Lee <mattl@cnuk.org>
Sun, 27 Mar 2011 22:47:23 +0000 (18:47 -0400)
mediagoblin/__init__.py
mediagoblin/app.py
mediagoblin/models.py
mediagoblin/routing.py
mediagoblin/util.py
mediagoblin/views.py
setup.py

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..033b91738632df4aa9f919cb5bba4a048eae9b93 100644 (file)
@@ -0,0 +1,16 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
index 478b25d66e044f11cff31c26410f3d6c79d80601..632a0c25c8bcdda53ec0509513f7c6745d17ce1e 100644 (file)
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import sys
 import urllib
 
index 41f4fb042f924ee159b7c336cf891eebc1e14613..c05fe3dedd5ba8e347b8d0a30456100e1aa6372a 100644 (file)
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from mongokit import Document, Set
 
 import datetime
index 0b345371d742f9b0b86eaaf40c2fbe148d069912..c60f121c369485576766f84526dc057d85721f8c 100644 (file)
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from routes import Mapper
 
 def get_mapper():
index 2af9b3805870671c287e13450acc283478673473..578261b9870102d927bd70d2b7586230d851b154 100644 (file)
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import jinja2
 
 def get_jinja_env(user_template_path=None):
index eca40203e672b8f10ddde7af07d9699b3944f743..e286e950a8c02a407a362318ef60979482f8f171 100644 (file)
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import datetime
 
 from webob import Response, exc
index e6c784d225b448538f108f6506b6114fd30b737f..1f9f852db9b32da00651861101110cb487ae7708 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,19 @@
+# GNU Mediagoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from setuptools import setup, find_packages
 
 import sys
@@ -21,7 +37,7 @@ setup(
 
     license = 'AGPLv3',
     author = 'Christopher Webber',
-    author_email = 'cwebber@dustycloud.org',
+    author_email = 'cwebber@gnu.org',
     entry_points = """\
       [paste.app_factory]
       app = mediagoblin.app:paste_app_factory