svn: r6826
This commit is contained in:
Alex Roitman 2006-05-31 03:48:32 +00:00
parent 0abb982817
commit 8b211d50f4
5 changed files with 9 additions and 8 deletions

View File

@ -27,9 +27,9 @@ __author__ = "David R. Hampton, Donald N. Allingham"
__version__ = "$Revision$"
from _Constants import *
from _TemplateParser import _template_map
from _Report import Report
from _ReportDialog import report
from _CommandLineReport import cl_report
from _DrawReportDialog import DrawReportDialog

View File

@ -68,8 +68,8 @@ else:
#
#------------------------------------------------------------------------
import BaseDoc
from PluginUtils import ReportUtils, \
register_text_doc, register_draw_doc, register_book_doc
from PluginUtils import register_text_doc, register_draw_doc, register_book_doc
from ReportBase import ReportUtils
rgb_color = ReportUtils.rgb_color
#------------------------------------------------------------------------

View File

@ -40,8 +40,8 @@ from math import pi, cos, sin, fabs
#-------------------------------------------------------------------------
import BaseDoc
import const
from PluginUtils import ReportUtils, \
register_text_doc, register_draw_doc, register_book_doc
from PluginUtils import register_text_doc, register_draw_doc, register_book_doc
from ReportBase import ReportUtils
pt2cm = ReportUtils.pt2cm
import ImgManip
import FontScale

View File

@ -40,8 +40,8 @@ from xml.sax.saxutils import escape
#-------------------------------------------------------------------------
import BaseDoc
import const
from PluginUtils import ReportUtils, \
register_text_doc, register_draw_doc, register_book_doc
from PluginUtils import register_text_doc, register_draw_doc, register_book_doc
from ReportBase import ReportUtils
pt2cm = ReportUtils.pt2cm
import ImgManip
import FontScale

View File

@ -33,7 +33,8 @@ from gettext import gettext as _
# Gramps modules
#
#-------------------------------------------------------------------------
from PluginUtils import register_draw_doc, ReportUtils, Report
from PluginUtils import register_draw_doc
from ReportBase import Report, ReportUtils
pt2cm, rgb_color = ReportUtils.pt2cm, ReportUtils.rgb_color
import Errors
import BaseDoc