diff --git a/gramps2/src/Options.py b/gramps2/src/ReportsTools/_Options.py similarity index 100% rename from gramps2/src/Options.py rename to gramps2/src/ReportsTools/_Options.py diff --git a/gramps2/src/Report.py b/gramps2/src/ReportsTools/_Report.py similarity index 100% rename from gramps2/src/Report.py rename to gramps2/src/ReportsTools/_Report.py diff --git a/gramps2/src/ReportOptions.py b/gramps2/src/ReportsTools/_ReportOptions.py similarity index 100% rename from gramps2/src/ReportOptions.py rename to gramps2/src/ReportsTools/_ReportOptions.py diff --git a/gramps2/src/ReportUtils.py b/gramps2/src/ReportsTools/_ReportUtils.py similarity index 100% rename from gramps2/src/ReportUtils.py rename to gramps2/src/ReportsTools/_ReportUtils.py diff --git a/gramps2/src/Tool.py b/gramps2/src/ReportsTools/_Tool.py similarity index 100% rename from gramps2/src/Tool.py rename to gramps2/src/ReportsTools/_Tool.py diff --git a/gramps2/src/ReportsTools/__init__.py b/gramps2/src/ReportsTools/__init__.py new file mode 100644 index 000000000..210db24d7 --- /dev/null +++ b/gramps2/src/ReportsTools/__init__.py @@ -0,0 +1,25 @@ +# +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2001-2006 Donald N. Allingham +# +# 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: Report.py 6044 2006-03-03 00:10:52Z rshura $ + +from _Report import * +from _Tool import * +from _ReportUtils import *