From af1d8b1ed192dbf39b57dec6be118f15f9b7a0be Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 2 Dec 2012 14:05:54 +0000 Subject: [PATCH] Add missing Gramps license information (thanks Paul Franklin) svn: r20743 --- gramps/webapp/connection.py | 21 +++++++++++++++++++++ gramps/webapp/grampsdb/view/__init__.py | 21 +++++++++++++++++++++ gramps/webapp/shell.py | 21 +++++++++++++++++++++ 3 files changed, 63 insertions(+) diff --git a/gramps/webapp/connection.py b/gramps/webapp/connection.py index 522e25983..af795afac 100644 --- a/gramps/webapp/connection.py +++ b/gramps/webapp/connection.py @@ -1,3 +1,24 @@ +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2012 Douglas S. Blank +# +# 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 2 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# $Id$ +# + import sys if sys.version_info[0] < 3: from urllib2 import (urlopen, Request, HTTPCookieProcessor, diff --git a/gramps/webapp/grampsdb/view/__init__.py b/gramps/webapp/grampsdb/view/__init__.py index b2fbf2644..35d772db6 100644 --- a/gramps/webapp/grampsdb/view/__init__.py +++ b/gramps/webapp/grampsdb/view/__init__.py @@ -1,3 +1,24 @@ +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2012 Douglas S. Blank +# +# 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 2 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# $Id$ +# + from .person import * from .family import * from .event import * diff --git a/gramps/webapp/shell.py b/gramps/webapp/shell.py index 909cfa328..d359b4dec 100644 --- a/gramps/webapp/shell.py +++ b/gramps/webapp/shell.py @@ -1,3 +1,24 @@ +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2012 Douglas S. Blank +# +# 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 2 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# $Id$ +# + #### This sets up Django so you can interact with it via the Python #### command line. #### Start with something like: