Plugins Restructure: Move NarrativeWeb.py plugins into plugins/webreport.
svn: r11649
This commit is contained in:
@ -242,7 +242,6 @@ src/plugins/ExportCd.py
|
|||||||
src/plugins/ExportXml.py
|
src/plugins/ExportXml.py
|
||||||
src/plugins/ImportGpkg.py
|
src/plugins/ImportGpkg.py
|
||||||
src/plugins/ImportXml.py
|
src/plugins/ImportXml.py
|
||||||
src/plugins/NarrativeWeb.py
|
|
||||||
src/plugins/Records.py
|
src/plugins/Records.py
|
||||||
src/plugins/WebCal.py
|
src/plugins/WebCal.py
|
||||||
|
|
||||||
@ -356,6 +355,9 @@ src/plugins/tool/SortEvents.py
|
|||||||
src/plugins/tool/SoundGen.py
|
src/plugins/tool/SoundGen.py
|
||||||
src/plugins/tool/Verify.py
|
src/plugins/tool/Verify.py
|
||||||
|
|
||||||
|
# plugins/webreport directory
|
||||||
|
src/plugins/webreport/NarrativeWeb.py
|
||||||
|
|
||||||
# PluginUtils package
|
# PluginUtils package
|
||||||
src/PluginUtils/_GuiOptions.py
|
src/PluginUtils/_GuiOptions.py
|
||||||
src/PluginUtils/_Options.py
|
src/PluginUtils/_Options.py
|
||||||
|
@ -5,50 +5,33 @@
|
|||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
drawreport \
|
drawreport \
|
||||||
|
export \
|
||||||
gramplet \
|
gramplet \
|
||||||
|
graph \
|
||||||
|
import \
|
||||||
quickview \
|
quickview \
|
||||||
rel \
|
rel \
|
||||||
tool
|
textreport \
|
||||||
|
tool \
|
||||||
|
webreport
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
||||||
|
|
||||||
pkgdata_PYTHON = \
|
pkgdata_PYTHON = \
|
||||||
AgeStats.py\
|
AgeStats.py\
|
||||||
AncestorReport.py\
|
|
||||||
BookReport.py\
|
BookReport.py\
|
||||||
Calendar.py \
|
Calendar.py \
|
||||||
CustomBookText.py\
|
|
||||||
DescendReport.py\
|
|
||||||
DetAncestralReport.py\
|
|
||||||
DetDescendantReport.py\
|
|
||||||
EndOfLineReport.py\
|
|
||||||
ExportXml.py\
|
ExportXml.py\
|
||||||
FamilyGroup.py\
|
|
||||||
ImportGpkg.py\
|
ImportGpkg.py\
|
||||||
ImportXml.py\
|
ImportXml.py\
|
||||||
IndivComplete.py\
|
|
||||||
KinshipReport.py\
|
|
||||||
MarkerReport.py\
|
|
||||||
NarrativeWeb.py\
|
|
||||||
NumberOfAncestorsReport.py\
|
|
||||||
PlaceReport.py\
|
|
||||||
Records.py\
|
Records.py\
|
||||||
SimpleBookTitle.py\
|
|
||||||
Summary.py\
|
|
||||||
WebCal.py\
|
WebCal.py\
|
||||||
WhatsNext.py
|
|
||||||
|
|
||||||
pkgpyexecdir = @pkgpyexecdir@/plugins
|
pkgpyexecdir = @pkgpyexecdir@/plugins
|
||||||
pkgpythondir = @pkgpythondir@/plugins
|
pkgpythondir = @pkgpythondir@/plugins
|
||||||
|
|
||||||
GLADEFILES = \
|
GLADEFILES = \
|
||||||
book.glade\
|
book.glade
|
||||||
ExportCsv.glade\
|
|
||||||
ExportFtree.glade\
|
|
||||||
ExportGeneWeb.glade\
|
|
||||||
ExportVCalendar.glade\
|
|
||||||
ExportVCard.glade\
|
|
||||||
ImportGedcom.glade
|
|
||||||
|
|
||||||
GRAPHICS =
|
GRAPHICS =
|
||||||
|
|
||||||
|
@ -18,6 +18,19 @@ pkgdata_PYTHON = \
|
|||||||
pkgpyexecdir = @pkgpyexecdir@/plugins/export
|
pkgpyexecdir = @pkgpyexecdir@/plugins/export
|
||||||
pkgpythondir = @pkgpythondir@/plugins/export
|
pkgpythondir = @pkgpythondir@/plugins/export
|
||||||
|
|
||||||
|
GLADEFILES = \
|
||||||
|
ExportCsv.glade \
|
||||||
|
ExportFtree.glade \
|
||||||
|
ExportGeneWeb.glade \
|
||||||
|
ExportVCalendar.glade \
|
||||||
|
ExportVCard.glade
|
||||||
|
|
||||||
|
GRAPHICS =
|
||||||
|
|
||||||
|
DATAFILES =
|
||||||
|
|
||||||
|
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
|
||||||
|
|
||||||
# Clean up all the byte-compiled files
|
# Clean up all the byte-compiled files
|
||||||
MOSTLYCLEANFILES = *pyc *pyo
|
MOSTLYCLEANFILES = *pyc *pyo
|
||||||
|
|
||||||
|
@ -16,6 +16,15 @@ pkgdata_PYTHON = \
|
|||||||
pkgpyexecdir = @pkgpyexecdir@/plugins/import
|
pkgpyexecdir = @pkgpyexecdir@/plugins/import
|
||||||
pkgpythondir = @pkgpythondir@/plugins/import
|
pkgpythondir = @pkgpythondir@/plugins/import
|
||||||
|
|
||||||
|
GLADEFILES = \
|
||||||
|
ImportGedcom.glade
|
||||||
|
|
||||||
|
GRAPHICS =
|
||||||
|
|
||||||
|
DATAFILES =
|
||||||
|
|
||||||
|
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
|
||||||
|
|
||||||
# Clean up all the byte-compiled files
|
# Clean up all the byte-compiled files
|
||||||
MOSTLYCLEANFILES = *pyc *pyo
|
MOSTLYCLEANFILES = *pyc *pyo
|
||||||
|
|
||||||
|
21
src/plugins/webreport/Makefile.am
Normal file
21
src/plugins/webreport/Makefile.am
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# This is the src/plugins/webreport 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/webreport
|
||||||
|
|
||||||
|
pkgdata_PYTHON = \
|
||||||
|
NarrativeWeb.py
|
||||||
|
|
||||||
|
pkgpyexecdir = @pkgpyexecdir@/plugins/webreport
|
||||||
|
pkgpythondir = @pkgpythondir@/plugins/webreport
|
||||||
|
|
||||||
|
# Clean up all the byte-compiled files
|
||||||
|
MOSTLYCLEANFILES = *pyc *pyo
|
||||||
|
|
||||||
|
GRAMPS_PY_MODPATH = "../../"
|
||||||
|
|
||||||
|
pycheck:
|
||||||
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
||||||
|
pychecker $(pkgdata_PYTHON));
|
Reference in New Issue
Block a user