Plugins Restructure: Move export plugins into plugins/export.
svn: r11640
This commit is contained in:
parent
8948630cd3
commit
ea23898403
@ -239,17 +239,7 @@ src/plugins/AgeStats.py
|
||||
src/plugins/BookReport.py
|
||||
src/plugins/Calendar.py
|
||||
src/plugins/ExportCd.py
|
||||
src/plugins/ExportCsv.py
|
||||
src/plugins/ExportFtree.py
|
||||
src/plugins/ExportGedcom.py
|
||||
src/plugins/ExportGeneWeb.py
|
||||
src/plugins/ExportPkg.py
|
||||
src/plugins/ExportVCalendar.py
|
||||
src/plugins/ExportVCard.py
|
||||
src/plugins/ExportXml.py
|
||||
src/plugins/GVFamilyLines.py
|
||||
src/plugins/GVHourGlass.py
|
||||
src/plugins/GVRelGraph.py
|
||||
src/plugins/ImportCsv.py
|
||||
src/plugins/ImportGedcom.py
|
||||
src/plugins/ImportGeneWeb.py
|
||||
@ -269,6 +259,15 @@ src/plugins/drawreport/FanChart.py
|
||||
src/plugins/drawreport/StatisticsChart.py
|
||||
src/plugins/drawreport/TimeLine.py
|
||||
|
||||
# plugins/export directory
|
||||
src/plugins/export/ExportCsv.py
|
||||
src/plugins/export/ExportFtree.py
|
||||
src/plugins/export/ExportGedcom.py
|
||||
src/plugins/export/ExportGeneWeb.py
|
||||
src/plugins/export/ExportPkg.py
|
||||
src/plugins/export/ExportVCalendar.py
|
||||
src/plugins/export/ExportVCard.py
|
||||
|
||||
# plugins/gramplet directory
|
||||
src/plugins/gramplet/AttributesGramplet.py
|
||||
src/plugins/gramplet/DefaultGramplets.py
|
||||
@ -277,6 +276,11 @@ src/plugins/gramplet/GivenNameGramplet.py
|
||||
src/plugins/gramplet/NoteGramplet.py
|
||||
src/plugins/gramplet/WhatsNext.py
|
||||
|
||||
# plugins/graph directory
|
||||
src/plugins/graph/GVFamilyLines.py
|
||||
src/plugins/graph/GVHourGlass.py
|
||||
src/plugins/graph/GVRelGraph.py
|
||||
|
||||
# plugins/quickview directory
|
||||
src/plugins/quickview/AgeOnDate.py
|
||||
src/plugins/quickview/all_events.py
|
||||
|
@ -22,14 +22,6 @@ pkgdata_PYTHON = \
|
||||
DetAncestralReport.py\
|
||||
DetDescendantReport.py\
|
||||
EndOfLineReport.py\
|
||||
ExportCd.py\
|
||||
ExportCsv.py\
|
||||
ExportFtree.py\
|
||||
ExportGedcom.py\
|
||||
ExportGeneWeb.py\
|
||||
ExportPkg.py\
|
||||
ExportVCalendar.py\
|
||||
ExportVCard.py\
|
||||
ExportXml.py\
|
||||
FamilyGroup.py\
|
||||
ImportCsv.py\
|
||||
|
28
src/plugins/export/Makefile.am
Normal file
28
src/plugins/export/Makefile.am
Normal file
@ -0,0 +1,28 @@
|
||||
# This is the src/plugins/export 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/export
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
ExportCd.py \
|
||||
ExportCsv.py \
|
||||
ExportFtree.py \
|
||||
ExportGedcom.py \
|
||||
ExportGeneWeb.py \
|
||||
ExportPkg.py \
|
||||
ExportVCalendar.py \
|
||||
ExportVCard.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins/export
|
||||
pkgpythondir = @pkgpythondir@/plugins/export
|
||||
|
||||
# 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