Move all quick views into plugins/quickview.
svn: r11635
This commit is contained in:
parent
96f9411caa
commit
a12989719b
@ -235,12 +235,8 @@ src/Selectors/_SelectorFactory.py
|
||||
src/Selectors/__init__.py
|
||||
|
||||
# plugins directory
|
||||
src/plugins/AgeOnDate.py
|
||||
src/plugins/AgeStats.py
|
||||
src/plugins/all_events.py
|
||||
src/plugins/all_relations.py
|
||||
src/plugins/AncestorReport.py
|
||||
src/plugins/AttributeMatch.py
|
||||
src/plugins/AttributesGramplet.py
|
||||
src/plugins/BookReport.py
|
||||
src/plugins/Calendar.py
|
||||
@ -261,7 +257,6 @@ src/plugins/ExportVCalendar.py
|
||||
src/plugins/ExportVCard.py
|
||||
src/plugins/ExportXml.py
|
||||
src/plugins/FamilyGroup.py
|
||||
src/plugins/FilterByName.py
|
||||
src/plugins/GivenNameGramplet.py
|
||||
src/plugins/GVFamilyLines.py
|
||||
src/plugins/GVHourGlass.py
|
||||
@ -276,16 +271,11 @@ src/plugins/ImportVCard.py
|
||||
src/plugins/ImportXml.py
|
||||
src/plugins/IndivComplete.py
|
||||
src/plugins/KinshipReport.py
|
||||
src/plugins/lineage.py
|
||||
src/plugins/MarkerReport.py
|
||||
src/plugins/NarrativeWeb.py
|
||||
src/plugins/NumberOfAncestorsReport.py
|
||||
src/plugins/OnThisDay.py
|
||||
src/plugins/PlaceReport.py
|
||||
src/plugins/Records.py
|
||||
src/plugins/References.py
|
||||
src/plugins/SameSurnames.py
|
||||
src/plugins/siblings.py
|
||||
src/plugins/SimpleBookTitle.py
|
||||
src/plugins/Summary.py
|
||||
src/plugins/WebCal.py
|
||||
@ -298,6 +288,18 @@ src/plugins/drawreport/FanChart.py
|
||||
src/plugins/drawreport/StatisticsChart.py
|
||||
src/plugins/drawreport/TimeLine.py
|
||||
|
||||
# plugins/quickview directory
|
||||
src/plugins/quickview/AgeOnDate.py
|
||||
src/plugins/quickview/all_events.py
|
||||
src/plugins/quickview/all_relations.py
|
||||
src/plugins/quickview/AttributeMatch.py
|
||||
src/plugins/quickview/FilterByName.py
|
||||
src/plugins/quickview/lineage.py
|
||||
src/plugins/quickview/OnThisDay.py
|
||||
src/plugins/quickview/References.py
|
||||
src/plugins/quickview/SameSurnames.py
|
||||
src/plugins/quickview/siblings.py
|
||||
|
||||
# plugins/rel directory
|
||||
src/plugins/rel/rel_cs.py
|
||||
src/plugins/rel/rel_da.py
|
||||
|
@ -4,19 +4,17 @@
|
||||
# If not using GNU make, then list all .py files individually
|
||||
|
||||
SUBDIRS = \
|
||||
drawreport \
|
||||
quickview \
|
||||
rel \
|
||||
tool
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
all_events.py\
|
||||
all_relations.py\
|
||||
AgeOnDate.py\
|
||||
AgeStats.py\
|
||||
AncestorTree.py\
|
||||
AncestorReport.py\
|
||||
AttributeMatch.py\
|
||||
AttributesGramplet.py\
|
||||
BookReport.py\
|
||||
Calendar.py \
|
||||
@ -39,7 +37,6 @@ pkgdata_PYTHON = \
|
||||
ExportXml.py\
|
||||
FamilyGroup.py\
|
||||
FanChart.py\
|
||||
FilterByName.py\
|
||||
GivenNameGramplet.py\
|
||||
GVFamilyLines.py \
|
||||
GVHourGlass.py\
|
||||
@ -54,16 +51,11 @@ pkgdata_PYTHON = \
|
||||
ImportXml.py\
|
||||
IndivComplete.py\
|
||||
KinshipReport.py\
|
||||
lineage.py\
|
||||
MarkerReport.py\
|
||||
NarrativeWeb.py\
|
||||
NumberOfAncestorsReport.py\
|
||||
OnThisDay.py\
|
||||
PlaceReport.py\
|
||||
Records.py\
|
||||
References.py\
|
||||
SameSurnames.py\
|
||||
siblings.py\
|
||||
SimpleBookTitle.py\
|
||||
StatisticsChart.py\
|
||||
Summary.py\
|
||||
|
@ -1,4 +1,4 @@
|
||||
# This is the src/plugins/rel level Makefile for Gramps
|
||||
# This is the src/plugins/drawreport 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
|
||||
|
32
src/plugins/quickview/Makefile.am
Normal file
32
src/plugins/quickview/Makefile.am
Normal file
@ -0,0 +1,32 @@
|
||||
# This is the src/plugins/quickview 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/quickview
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
AgeOnDate.py \
|
||||
all_events.py \
|
||||
all_relations.py \
|
||||
AttributeMatch.py \
|
||||
FilterByName.py \
|
||||
lineage.py \
|
||||
OnThisDay.py \
|
||||
Query.py \
|
||||
References.py \
|
||||
Reporef.py \
|
||||
SameSurnames.py\
|
||||
siblings.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins/quickview
|
||||
pkgpythondir = @pkgpythondir@/plugins/quickview
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../../"
|
||||
|
||||
pycheck:
|
||||
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
||||
pychecker $(pkgdata_PYTHON));
|
@ -1,4 +1,4 @@
|
||||
# This is the src/plugins/rel level Makefile for Gramps
|
||||
# This is the src/plugins/tool 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
|
||||
|
Loading…
Reference in New Issue
Block a user