From cfe24fa3dc15d87f3ace944a2d62a0f4c5ee496c Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 7 May 2015 22:40:19 -0400 Subject: Update Copyright header point to COPYING file Point to a file containing the license rather than including it in every single source file. This will make it easier to manage the license in the future without another humongous commit. https://fedorahosted.org/ipsilon/ticket/126 Signed-off-by: Rob Crittenden Reviewed-by: Patrick Uiterwijk --- ipsilon/util/config.py | 2 +- ipsilon/util/cookies.py | 2 +- ipsilon/util/data.py | 17 +---------------- ipsilon/util/endpoint.py | 2 +- ipsilon/util/errors.py | 17 +---------------- ipsilon/util/log.py | 4 +--- ipsilon/util/page.py | 17 +---------------- ipsilon/util/plugin.py | 17 +---------------- ipsilon/util/policy.py | 2 +- ipsilon/util/sessions.py | 2 +- ipsilon/util/trans.py | 2 +- ipsilon/util/user.py | 17 +---------------- 12 files changed, 12 insertions(+), 89 deletions(-) (limited to 'ipsilon/util') diff --git a/ipsilon/util/config.py b/ipsilon/util/config.py index a20c87c..622820c 100644 --- a/ipsilon/util/config.py +++ b/ipsilon/util/config.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 Ipsilon project Contributors, for licensee see COPYING +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING from ipsilon.util.log import Log import json diff --git a/ipsilon/util/cookies.py b/ipsilon/util/cookies.py index 266c401..f9b0889 100644 --- a/ipsilon/util/cookies.py +++ b/ipsilon/util/cookies.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 Ipsilon project Contributors, for licensee see COPYING +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING from ipsilon.util.log import Log import cherrypy diff --git a/ipsilon/util/data.py b/ipsilon/util/data.py index 26fa859..7fdc508 100644 --- a/ipsilon/util/data.py +++ b/ipsilon/util/data.py @@ -1,19 +1,4 @@ -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program 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 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING import cherrypy from ipsilon.util.log import Log diff --git a/ipsilon/util/endpoint.py b/ipsilon/util/endpoint.py index 92dc388..b1552fe 100644 --- a/ipsilon/util/endpoint.py +++ b/ipsilon/util/endpoint.py @@ -1,4 +1,4 @@ -# Copyright (C) 2015 Ipsilon Contributors see COPYING for license +# Copyright (C) 2015 Ipsilon project Contributors, for license see COPYING import cherrypy from ipsilon.util.log import Log diff --git a/ipsilon/util/errors.py b/ipsilon/util/errors.py index 70d2da9..c22b7f9 100644 --- a/ipsilon/util/errors.py +++ b/ipsilon/util/errors.py @@ -1,19 +1,4 @@ -# Copyright (C) 2014 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program 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 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING from ipsilon.util.page import Page diff --git a/ipsilon/util/log.py b/ipsilon/util/log.py index ae851af..03d8c57 100644 --- a/ipsilon/util/log.py +++ b/ipsilon/util/log.py @@ -1,6 +1,4 @@ -# Copyright (C) 2014 Ipsilon Project Contributors -# -# See the file named COPYING for the project license +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING import cherrypy import cStringIO diff --git a/ipsilon/util/page.py b/ipsilon/util/page.py index 094a6a9..e1cecb9 100644 --- a/ipsilon/util/page.py +++ b/ipsilon/util/page.py @@ -1,19 +1,4 @@ -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program 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 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING import cherrypy from ipsilon.util.endpoint import Endpoint diff --git a/ipsilon/util/plugin.py b/ipsilon/util/plugin.py index 2f9c003..1f66d8e 100644 --- a/ipsilon/util/plugin.py +++ b/ipsilon/util/plugin.py @@ -1,19 +1,4 @@ -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program 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 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING import os import imp diff --git a/ipsilon/util/policy.py b/ipsilon/util/policy.py index 7fdac0c..8f70673 100644 --- a/ipsilon/util/policy.py +++ b/ipsilon/util/policy.py @@ -1,4 +1,4 @@ -# Copyright (C) 2015 Ipsilon project Contributors, for licensee see COPYING +# Copyright (C) 2015 Ipsilon project Contributors, for license see COPYING from ipsilon.util.log import Log import copy diff --git a/ipsilon/util/sessions.py b/ipsilon/util/sessions.py index 8522a28..f5390dc 100644 --- a/ipsilon/util/sessions.py +++ b/ipsilon/util/sessions.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 Ipsilon project Contributors, for licensee see COPYING +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING import base64 from cherrypy.lib.sessions import Session diff --git a/ipsilon/util/trans.py b/ipsilon/util/trans.py index 5ac3e42..bcc3bd0 100644 --- a/ipsilon/util/trans.py +++ b/ipsilon/util/trans.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 Ipsilon project Contributors, for licensee see COPYING +# Copyright (C) 2014 Ipsilon project Contributors, for license see COPYING from ipsilon.util.data import TranStore from ipsilon.util.log import Log diff --git a/ipsilon/util/user.py b/ipsilon/util/user.py index dd4a0f4..ee3fe41 100644 --- a/ipsilon/util/user.py +++ b/ipsilon/util/user.py @@ -1,19 +1,4 @@ -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program 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 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING from ipsilon.util.data import UserStore from ipsilon.util.log import Log -- cgit