Plugins Restructure: Move text reports into plugins/textreport.
svn: r11638
This commit is contained in:
parent
2db7113c5d
commit
853e54a624
@ -236,14 +236,8 @@ src/Selectors/__init__.py
|
||||
|
||||
# plugins directory
|
||||
src/plugins/AgeStats.py
|
||||
src/plugins/AncestorReport.py
|
||||
src/plugins/BookReport.py
|
||||
src/plugins/Calendar.py
|
||||
src/plugins/CustomBookText.py
|
||||
src/plugins/DescendReport.py
|
||||
src/plugins/DetAncestralReport.py
|
||||
src/plugins/DetDescendantReport.py
|
||||
src/plugins/EndOfLineReport.py
|
||||
src/plugins/ExportCd.py
|
||||
src/plugins/ExportCsv.py
|
||||
src/plugins/ExportFtree.py
|
||||
@ -253,7 +247,6 @@ src/plugins/ExportPkg.py
|
||||
src/plugins/ExportVCalendar.py
|
||||
src/plugins/ExportVCard.py
|
||||
src/plugins/ExportXml.py
|
||||
src/plugins/FamilyGroup.py
|
||||
src/plugins/GVFamilyLines.py
|
||||
src/plugins/GVHourGlass.py
|
||||
src/plugins/GVRelGraph.py
|
||||
@ -265,15 +258,8 @@ src/plugins/ImportGrdb.py
|
||||
src/plugins/ImportProGen.py
|
||||
src/plugins/ImportVCard.py
|
||||
src/plugins/ImportXml.py
|
||||
src/plugins/IndivComplete.py
|
||||
src/plugins/KinshipReport.py
|
||||
src/plugins/MarkerReport.py
|
||||
src/plugins/NarrativeWeb.py
|
||||
src/plugins/NumberOfAncestorsReport.py
|
||||
src/plugins/PlaceReport.py
|
||||
src/plugins/Records.py
|
||||
src/plugins/SimpleBookTitle.py
|
||||
src/plugins/Summary.py
|
||||
src/plugins/WebCal.py
|
||||
|
||||
# plugins/drawreport directory
|
||||
@ -320,6 +306,22 @@ src/plugins/rel/rel_ru.py
|
||||
src/plugins/rel/rel_sk.py
|
||||
src/plugins/rel/rel_sv.py
|
||||
|
||||
# plugins/textreport directory
|
||||
src/plugins/textreport/AncestorReport.py
|
||||
src/plugins/textreport/CustomBookText.py
|
||||
src/plugins/textreport/DescendReport.py
|
||||
src/plugins/textreport/DetAncestralReport.py
|
||||
src/plugins/textreport/DetDescendantReport.py
|
||||
src/plugins/textreport/EndOfLineReport.py
|
||||
src/plugins/textreport/FamilyGroup.py
|
||||
src/plugins/textreport/IndivComplete.py
|
||||
src/plugins/textreport/KinshipReport.py
|
||||
src/plugins/textreport/MarkerReport.py
|
||||
src/plugins/textreport/NumberOfAncestorsReport.py
|
||||
src/plugins/textreport/PlaceReport.py
|
||||
src/plugins/textreport/SimpleBookTitle.py
|
||||
src/plugins/textreport/Summary.py
|
||||
|
||||
# plugins/tool directory
|
||||
src/plugins/tool/CalculateEstimatedDates.py
|
||||
src/plugins/tool/ChangeNames.py
|
||||
|
@ -14,12 +14,10 @@ pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
AgeStats.py\
|
||||
AncestorTree.py\
|
||||
AncestorReport.py\
|
||||
BookReport.py\
|
||||
Calendar.py \
|
||||
CustomBookText.py\
|
||||
DescendTree.py\
|
||||
DescendReport.py\
|
||||
DetAncestralReport.py\
|
||||
DetDescendantReport.py\
|
||||
@ -34,7 +32,6 @@ pkgdata_PYTHON = \
|
||||
ExportVCard.py\
|
||||
ExportXml.py\
|
||||
FamilyGroup.py\
|
||||
FanChart.py\
|
||||
GVFamilyLines.py \
|
||||
GVHourGlass.py\
|
||||
GVRelGraph.py\
|
||||
@ -54,9 +51,7 @@ pkgdata_PYTHON = \
|
||||
PlaceReport.py\
|
||||
Records.py\
|
||||
SimpleBookTitle.py\
|
||||
StatisticsChart.py\
|
||||
Summary.py\
|
||||
TimeLine.py\
|
||||
WebCal.py\
|
||||
WhatsNext.py
|
||||
|
||||
|
34
src/plugins/textreport/Makefile.am
Normal file
34
src/plugins/textreport/Makefile.am
Normal file
@ -0,0 +1,34 @@
|
||||
# This is the src/plugins/textreport level Makefile for Gramps
|
||||
# We could use GNU make's ':=' syntax for nice wildcard use,
|
||||
# but that is not necessarily portable.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/plugins/textreport
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
AncestorReport.py\
|
||||
CustomBookText.py\
|
||||
DescendReport.py\
|
||||
DetAncestralReport.py\
|
||||
DetDescendantReport.py\
|
||||
EndOfLineReport.py\
|
||||
FamilyGroup.py\
|
||||
IndivComplete.py\
|
||||
KinshipReport.py\
|
||||
MarkerReport.py\
|
||||
NumberOfAncestorsReport.py\
|
||||
PlaceReport.py\
|
||||
SimpleBookTitle.py\
|
||||
Summary.py\
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins/textreport
|
||||
pkgpythondir = @pkgpythondir@/plugins/textreport
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../../"
|
||||
|
||||
pycheck:
|
||||
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
||||
pychecker $(pkgdata_PYTHON));
|
Loading…
Reference in New Issue
Block a user