2006-05-30 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Change files due to module split. svn: r6821
This commit is contained in:
parent
0ab5eb9a0d
commit
f8eb3a2ebb
@ -1,3 +1,6 @@
|
|||||||
|
2006-05-30 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* POTFILES.in: Change files due to module split.
|
||||||
|
|
||||||
2006-05-28 Alex Roitman <shura@gramps-project.org>
|
2006-05-28 Alex Roitman <shura@gramps-project.org>
|
||||||
* gramps.pot: Update.
|
* gramps.pot: Update.
|
||||||
|
|
||||||
|
@ -229,7 +229,6 @@ src/plugins/AncestorChart2.py
|
|||||||
src/plugins/AncestorChart.py
|
src/plugins/AncestorChart.py
|
||||||
src/plugins/AncestorReport.py
|
src/plugins/AncestorReport.py
|
||||||
src/plugins/Ancestors.py
|
src/plugins/Ancestors.py
|
||||||
src/plugins/BookReport.py
|
|
||||||
src/plugins/Calendar.py
|
src/plugins/Calendar.py
|
||||||
src/plugins/ChangeNames.py
|
src/plugins/ChangeNames.py
|
||||||
src/plugins/ChangeTypes.py
|
src/plugins/ChangeTypes.py
|
||||||
@ -288,15 +287,30 @@ src/plugins/WriteGeneWeb.py
|
|||||||
src/plugins/WritePkg.py
|
src/plugins/WritePkg.py
|
||||||
src/PluginUtils/__init__.py
|
src/PluginUtils/__init__.py
|
||||||
src/PluginUtils/_Options.py
|
src/PluginUtils/_Options.py
|
||||||
src/PluginUtils/_PaperMenu.py
|
|
||||||
src/PluginUtils/_PluginMgr.py
|
src/PluginUtils/_PluginMgr.py
|
||||||
src/PluginUtils/_Plugins.py
|
src/PluginUtils/_Plugins.py
|
||||||
src/PluginUtils/_ReportOptions.py
|
|
||||||
src/PluginUtils/_Report.py
|
|
||||||
src/PluginUtils/_ReportUtils.py
|
|
||||||
src/PluginUtils/_StyleEditor.py
|
|
||||||
src/PluginUtils/_Tool.py
|
src/PluginUtils/_Tool.py
|
||||||
src/PluginUtils/_PluginStatus.py
|
src/PluginUtils/_PluginStatus.py
|
||||||
|
src/ReportBase/_BareReportDialog.py
|
||||||
|
src/ReportBase/_BookFormatComboBox.py
|
||||||
|
src/ReportBase/_BookReport.py
|
||||||
|
src/ReportBase/_CommandLineReport.py
|
||||||
|
src/ReportBase/_Constants.py
|
||||||
|
src/ReportBase/_DrawFormatComboBox.py
|
||||||
|
src/ReportBase/_DrawReportDialog.py
|
||||||
|
src/ReportBase/_FileEntry.py
|
||||||
|
src/ReportBase/__init__.py
|
||||||
|
src/ReportBase/_PaperMenu.py
|
||||||
|
src/ReportBase/_PrintTools.py
|
||||||
|
src/ReportBase/_ReportDialog.py
|
||||||
|
src/ReportBase/_ReportOptions.py
|
||||||
|
src/ReportBase/_Report.py
|
||||||
|
src/ReportBase/_ReportUtils.py
|
||||||
|
src/ReportBase/_StyleComboBox.py
|
||||||
|
src/ReportBase/_StyleEditor.py
|
||||||
|
src/ReportBase/_TemplateParser.py
|
||||||
|
src/ReportBase/_TextFormatComboBox.py
|
||||||
|
src/ReportBase/_TextReportDialog.py
|
||||||
src/RelLib/_AddressBase.py
|
src/RelLib/_AddressBase.py
|
||||||
src/RelLib/_Address.py
|
src/RelLib/_Address.py
|
||||||
src/RelLib/_AttributeBase.py
|
src/RelLib/_AttributeBase.py
|
||||||
|
@ -20,6 +20,7 @@ SUBDIRS = \
|
|||||||
data \
|
data \
|
||||||
DateHandler \
|
DateHandler \
|
||||||
PluginUtils \
|
PluginUtils \
|
||||||
|
ReportBase \
|
||||||
glade \
|
glade \
|
||||||
docgen \
|
docgen \
|
||||||
images \
|
images \
|
||||||
|
@ -8,13 +8,8 @@ pkgdatadir = $(datadir)/@PACKAGE@/PluginUtils
|
|||||||
pkgdata_PYTHON = \
|
pkgdata_PYTHON = \
|
||||||
__init__.py\
|
__init__.py\
|
||||||
_Options.py\
|
_Options.py\
|
||||||
_ReportOptions.py\
|
|
||||||
_Report.py\
|
|
||||||
_ReportUtils.py\
|
|
||||||
_Tool.py\
|
_Tool.py\
|
||||||
_StyleEditor.py\
|
|
||||||
_PluginMgr.py\
|
_PluginMgr.py\
|
||||||
_PaperMenu.py\
|
|
||||||
_PluginStatus.py\
|
_PluginStatus.py\
|
||||||
_Plugins.py
|
_Plugins.py
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ import const
|
|||||||
import Utils
|
import Utils
|
||||||
import Config
|
import Config
|
||||||
import Errors
|
import Errors
|
||||||
from Report import report, standalone_categories
|
from ReportBase import report, standalone_categories
|
||||||
import _Tool
|
import _Tool
|
||||||
import _PluginMgr
|
import _PluginMgr
|
||||||
import _PluginStatus
|
import _PluginStatus
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# This is the src/Report level Makefile for Gramps
|
# This is the src/Report level Makefile for Gramps
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/Report
|
pkgdatadir = $(datadir)/@PACKAGE@/ReportBase
|
||||||
|
|
||||||
pkgdata_PYTHON = \
|
pkgdata_PYTHON = \
|
||||||
_BareReportDialog.py\
|
_BareReportDialog.py\
|
||||||
@ -24,8 +24,8 @@ pkgdata_PYTHON = \
|
|||||||
_TextFormatComboBox.py\
|
_TextFormatComboBox.py\
|
||||||
_TextReportDialog.py
|
_TextReportDialog.py
|
||||||
|
|
||||||
pkgpyexecdir = @pkgpyexecdir@/Report
|
pkgpyexecdir = @pkgpyexecdir@/ReportBase
|
||||||
pkgpythondir = @pkgpythondir@/Report
|
pkgpythondir = @pkgpythondir@/ReportBase
|
||||||
|
|
||||||
# Clean up all the byte-compiled files
|
# Clean up all the byte-compiled files
|
||||||
MOSTLYCLEANFILES = *pyc *pyo
|
MOSTLYCLEANFILES = *pyc *pyo
|
@ -29,10 +29,10 @@ __version__ = "$Revision$"
|
|||||||
from _Constants import *
|
from _Constants import *
|
||||||
from _TemplateParser import _template_map
|
from _TemplateParser import _template_map
|
||||||
|
|
||||||
import _ReportOptions as ReportOptions
|
|
||||||
import _ReportUtils as ReportUtils
|
|
||||||
|
|
||||||
from _Report import Report
|
from _Report import Report
|
||||||
from _ReportDialog import report
|
from _ReportDialog import report
|
||||||
from _DrawReportDialog import DrawReportDialog
|
from _DrawReportDialog import DrawReportDialog
|
||||||
from _TextReportDialog import TextReportDialog
|
from _TextReportDialog import TextReportDialog
|
||||||
|
|
||||||
|
import _ReportOptions as ReportOptions
|
||||||
|
import _ReportUtils as ReportUtils
|
Loading…
x
Reference in New Issue
Block a user