From 0178fd071ee552c8455e28a7d2e37092d6b3d718 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 16 May 2014 09:15:20 +0200 Subject: [PATCH] fix some copyrights --- timeside/__init__.py | 21 +++++++++++++++++++++ timeside/grapher/render_analyzers.py | 2 +- timeside/server/models.py | 23 +++++++++++++++++++++++ timeside/server/serializers.py | 19 +++++++++++++++++++ timeside/server/views.py | 21 +++++++++++++++++++++ 5 files changed, 85 insertions(+), 1 deletion(-) diff --git a/timeside/__init__.py b/timeside/__init__.py index 60f73f9..3a86c08 100644 --- a/timeside/__init__.py +++ b/timeside/__init__.py @@ -1,4 +1,25 @@ # -*- coding: utf-8 -*- +# +# Copyright (c) 2014 Thomas Fillon + +# This file is part of TimeSide. + +# TimeSide 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. + +# TimeSide 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. + +# You should have received a copy of the GNU General Public License +# along with TimeSide. If not, see . +# +# Authors: +# Thomas Fillon + from __future__ import absolute_import from . import api diff --git a/timeside/grapher/render_analyzers.py b/timeside/grapher/render_analyzers.py index 79f6560..bfda8dc 100644 --- a/timeside/grapher/render_analyzers.py +++ b/timeside/grapher/render_analyzers.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- # # Copyright (c) 2007-2014 Guillaume Pellerin -# Copyright (c) 2010 Olivier Guilyardi # Copyright (c) 2013-2014 Thomas Fillon # This file is part of TimeSide. @@ -18,6 +17,7 @@ # You should have received a copy of the GNU General Public License # along with TimeSide. If not, see . + from __future__ import division from timeside.core import implements, interfacedoc, abstract, get_processor diff --git a/timeside/server/models.py b/timeside/server/models.py index d9796a7..8154555 100644 --- a/timeside/server/models.py +++ b/timeside/server/models.py @@ -1,4 +1,27 @@ # -*- coding: utf-8 -*- +# +# Copyright (c) 2014 Parisson SARL +# Copyright (c) 2014 Guillaume Pellerin +# Copyright (c) 2014 Thomas Fillon + +# This file is part of TimeSide. + +# TimeSide 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. + +# TimeSide 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. + +# You should have received a copy of the GNU General Public License +# along with TimeSide. If not, see . + +# Authors: +# Guillaume Pellerin +# Thomas Fillon import timeside, os, uuid, time, hashlib, mimetypes diff --git a/timeside/server/serializers.py b/timeside/server/serializers.py index 221f4c3..b60c292 100644 --- a/timeside/server/serializers.py +++ b/timeside/server/serializers.py @@ -1,3 +1,22 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2007-2014 Guillaume Pellerin + +# This file is part of TimeSide. + +# TimeSide 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. + +# TimeSide 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. + +# You should have received a copy of the GNU General Public License +# along with TimeSide. If not, see . + from timeside.server.models import * from rest_framework import serializers import django.db.models diff --git a/timeside/server/views.py b/timeside/server/views.py index f371e19..3d95538 100644 --- a/timeside/server/views.py +++ b/timeside/server/views.py @@ -1,4 +1,25 @@ # -*- coding: utf-8 -*- +# +# Copyright (c) 2014 Parisson SARL +# Copyright (c) 2014 Guillaume Pellerin + +# This file is part of TimeSide. + +# TimeSide 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. + +# TimeSide 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. + +# You should have received a copy of the GNU General Public License +# along with TimeSide. If not, see . +# +# Author : Guillaume Pellerin + from django.views.generic import * from django.http import HttpResponse, HttpResponseRedirect -- 2.39.5