From a617cbdffb4a16759055e89ff6296151aee2550c Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Fri, 1 May 2009 15:10:37 +0200 Subject: [PATCH] added copyright and license information --- pyweb/__init__.py | 14 ++++++++++++++ pyweb/manage.py | 16 ++++++++++++++++ pyweb/mumble/__init__.py | 14 ++++++++++++++ pyweb/mumble/templatetags/__init__.py | 14 ++++++++++++++ pyweb/mumble/templatetags/mumble_extras.py | 15 +++++++++++++++ pyweb/settings.py | 15 +++++++++++++++ pyweb/urls.py | 15 +++++++++++++++ pyweb/views.py | 15 +++++++++++++++ 8 files changed, 118 insertions(+) diff --git a/pyweb/__init__.py b/pyweb/__init__.py index e69de29..cab0bd4 100644 --- a/pyweb/__init__.py +++ b/pyweb/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" diff --git a/pyweb/manage.py b/pyweb/manage.py index bcdd55e..2e38d2e 100755 --- a/pyweb/manage.py +++ b/pyweb/manage.py @@ -1,4 +1,20 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- + +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" + from django.core.management import execute_manager try: import settings # Assumed to be in the same directory. diff --git a/pyweb/mumble/__init__.py b/pyweb/mumble/__init__.py index e69de29..cab0bd4 100644 --- a/pyweb/mumble/__init__.py +++ b/pyweb/mumble/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" diff --git a/pyweb/mumble/templatetags/__init__.py b/pyweb/mumble/templatetags/__init__.py index e69de29..cab0bd4 100644 --- a/pyweb/mumble/templatetags/__init__.py +++ b/pyweb/mumble/templatetags/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" diff --git a/pyweb/mumble/templatetags/mumble_extras.py b/pyweb/mumble/templatetags/mumble_extras.py index 3237936..f5afdd0 100644 --- a/pyweb/mumble/templatetags/mumble_extras.py +++ b/pyweb/mumble/templatetags/mumble_extras.py @@ -1,3 +1,18 @@ +# -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" + from django import template register = template.Library(); diff --git a/pyweb/settings.py b/pyweb/settings.py index e6d5f62..31425fd 100644 --- a/pyweb/settings.py +++ b/pyweb/settings.py @@ -1,5 +1,20 @@ +# -*- coding: utf-8 -*- # Django settings for mumble_django project. +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" + ################################################################# ################################################################# ## ## diff --git a/pyweb/urls.py b/pyweb/urls.py index 4b52b30..ce705cd 100644 --- a/pyweb/urls.py +++ b/pyweb/urls.py @@ -1,4 +1,19 @@ # -*- coding: utf-8 -*- + +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" + from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: diff --git a/pyweb/views.py b/pyweb/views.py index a1055ef..e205c22 100644 --- a/pyweb/views.py +++ b/pyweb/views.py @@ -1,4 +1,19 @@ # -*- coding: utf-8 -*- + +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package 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 General Public License for more details. +""" + from django.shortcuts import render_to_response, get_object_or_404, get_list_or_404 from django.template import RequestContext from django.http import HttpResponseRedirect