From dd7eb7f80625e741c4debbf1fab30720cedc9484 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 9 Mar 2006 19:10:55 +0000 Subject: [PATCH] Update svn: r6112 --- .../{Options.py => ReportsTools/_Options.py} | 0 .../{Report.py => ReportsTools/_Report.py} | 0 .../_ReportOptions.py} | 0 .../_ReportUtils.py} | 0 .../src/{Tool.py => ReportsTools/_Tool.py} | 0 gramps2/src/ReportsTools/__init__.py | 25 +++++++++++++++++++ 6 files changed, 25 insertions(+) rename gramps2/src/{Options.py => ReportsTools/_Options.py} (100%) rename gramps2/src/{Report.py => ReportsTools/_Report.py} (100%) rename gramps2/src/{ReportOptions.py => ReportsTools/_ReportOptions.py} (100%) rename gramps2/src/{ReportUtils.py => ReportsTools/_ReportUtils.py} (100%) rename gramps2/src/{Tool.py => ReportsTools/_Tool.py} (100%) create mode 100644 gramps2/src/ReportsTools/__init__.py 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 *