GEPS008: Convert filter filenames to lower case
svn: r19639
This commit is contained in:
@@ -6,12 +6,12 @@ SUBDIRS = rules
|
||||
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
_FilterList.py \
|
||||
_FilterParser.py \
|
||||
_GenericFilter.py \
|
||||
_ParamFilter.py \
|
||||
_filterlist.py \
|
||||
_filterparser.py \
|
||||
_genericfilter.py \
|
||||
_paramfilter.py \
|
||||
__init__.py \
|
||||
_SearchFilter.py
|
||||
_searchfilter.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/gen/filters
|
||||
|
||||
|
||||
@@ -28,10 +28,10 @@ Package providing filtering framework for GRAMPS.
|
||||
CustomFilters = None
|
||||
|
||||
from const import CUSTOM_FILTERS
|
||||
from _FilterList import FilterList
|
||||
from _GenericFilter import GenericFilter, GenericFilterFactory
|
||||
from _ParamFilter import ParamFilter
|
||||
from _SearchFilter import SearchFilter, ExactSearchFilter
|
||||
from _filterlist import FilterList
|
||||
from _genericfilter import GenericFilter, GenericFilterFactory
|
||||
from _paramfilter import ParamFilter
|
||||
from _searchfilter import SearchFilter, ExactSearchFilter
|
||||
|
||||
#def reload_system_filters():
|
||||
#global SystemFilters
|
||||
|
||||
@@ -6,32 +6,32 @@ SUBDIRS = person family event place source media repository note citation
|
||||
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
_ChangedSinceBase.py\
|
||||
_Everything.py\
|
||||
_HasEventBase.py\
|
||||
_HasAttributeBase.py\
|
||||
_HasGalleryBase.py \
|
||||
_HasGrampsId.py\
|
||||
_HasLDSBase.py \
|
||||
_HasNoteBase.py \
|
||||
_HasNoteRegexBase.py\
|
||||
_HasNoteSubstrBase.py\
|
||||
_HasReferenceCountBase.py \
|
||||
_HasSourceCountBase.py \
|
||||
_HasSourceBase.py \
|
||||
_HasTagBase.py \
|
||||
_HasTextMatchingRegexpOf.py\
|
||||
_HasTextMatchingSubstringOf.py\
|
||||
_changedsincebase.py\
|
||||
_everything.py\
|
||||
_haseventbase.py\
|
||||
_hasattributebase.py\
|
||||
_hasgallerybase.py \
|
||||
_hasgrampsid.py\
|
||||
_hasldsbase.py \
|
||||
_hasnotebase.py \
|
||||
_hasnoteregexbase.py\
|
||||
_hasnotesubstrbase.py\
|
||||
_hasreferencecountbase.py \
|
||||
_hassourcecountbase.py \
|
||||
_hassourcebase.py \
|
||||
_hastagbase.py \
|
||||
_hastextmatchingregexpof.py\
|
||||
_hastextmatchingsubstringof.py\
|
||||
__init__.py\
|
||||
_IsPrivate.py\
|
||||
_IsPublic.py\
|
||||
_RegExpIdBase.py\
|
||||
_Rule.py\
|
||||
_MatchesFilterBase.py\
|
||||
_MatchesEventFilterBase.py \
|
||||
_MatchesSourceConfidenceBase.py \
|
||||
_MatchesSourceFilterBase.py \
|
||||
_HasCitationBase.py
|
||||
_isprivate.py\
|
||||
_ispublic.py\
|
||||
_regexpidbase.py\
|
||||
_rule.py\
|
||||
_matchesfilterbase.py\
|
||||
_matcheseventfilterbase.py \
|
||||
_matchessourceconfidencebase.py \
|
||||
_matchessourcefilterbase.py \
|
||||
_hascitationbase.py
|
||||
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules
|
||||
|
||||
@@ -69,19 +69,19 @@ _Everything Match every object in the database
|
||||
|
||||
# Need to expose this to be available for filter plugins:
|
||||
# the plugins should say: from gen.filters.rules import Rule
|
||||
from gen.filters.rules._Rule import Rule
|
||||
from gen.filters.rules._rule import Rule
|
||||
|
||||
from gen.filters.rules._Everything import Everything
|
||||
from gen.filters.rules._HasGrampsId import HasGrampsId
|
||||
from gen.filters.rules._IsPrivate import IsPrivate
|
||||
from gen.filters.rules._IsPublic import IsPublic
|
||||
from gen.filters.rules._HasTextMatchingSubstringOf import HasTextMatchingSubstringOf
|
||||
from gen.filters.rules._HasTextMatchingRegexpOf import HasTextMatchingRegexpOf
|
||||
from gen.filters.rules._MatchesFilterBase import MatchesFilterBase
|
||||
from gen.filters.rules._MatchesEventFilterBase import MatchesEventFilterBase
|
||||
from gen.filters.rules._MatchesSourceConfidenceBase import MatchesSourceConfidenceBase
|
||||
from gen.filters.rules._MatchesSourceFilterBase import MatchesSourceFilterBase
|
||||
from gen.filters.rules._ChangedSinceBase import ChangedSinceBase
|
||||
from gen.filters.rules._everything import Everything
|
||||
from gen.filters.rules._hasgrampsid import HasGrampsId
|
||||
from gen.filters.rules._isprivate import IsPrivate
|
||||
from gen.filters.rules._ispublic import IsPublic
|
||||
from gen.filters.rules._hastextmatchingsubstringof import HasTextMatchingSubstringOf
|
||||
from gen.filters.rules._hastextmatchingregexpof import HasTextMatchingRegexpOf
|
||||
from gen.filters.rules._matchesfilterbase import MatchesFilterBase
|
||||
from gen.filters.rules._matcheseventfilterbase import MatchesEventFilterBase
|
||||
from gen.filters.rules._matchessourceconfidencebase import MatchesSourceConfidenceBase
|
||||
from gen.filters.rules._matchessourcefilterbase import MatchesSourceFilterBase
|
||||
from gen.filters.rules._changedsincebase import ChangedSinceBase
|
||||
|
||||
from gen.filters.rules import (person, family, event, source, citation, place,
|
||||
media, repository, note)
|
||||
|
||||
@@ -5,21 +5,21 @@ pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/citation
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
__init__.py \
|
||||
_AllCitations.py \
|
||||
_ChangedSince.py \
|
||||
_CitationPrivate.py \
|
||||
_HasGallery.py \
|
||||
_HasIdOf.py \
|
||||
_HasNote.py \
|
||||
_HasNoteMatchingSubstringOf.py \
|
||||
_HasNoteRegexp.py \
|
||||
_HasReferenceCountOf.py \
|
||||
_HasSource.py \
|
||||
_MatchesFilter.py \
|
||||
_MatchesPageSubstringOf.py \
|
||||
_MatchesRepositoryFilter.py \
|
||||
_MatchesSourceFilter.py \
|
||||
_RegExpIdOf.py
|
||||
_allcitations.py \
|
||||
_changedsince.py \
|
||||
_citationprivate.py \
|
||||
_hasgallery.py \
|
||||
_hasidof.py \
|
||||
_hasnote.py \
|
||||
_hasnotematchingsubstringof.py \
|
||||
_hasnoteregexp.py \
|
||||
_hasreferencecountof.py \
|
||||
_hassource.py \
|
||||
_matchesfilter.py \
|
||||
_matchespagesubstringof.py \
|
||||
_matchesrepositoryfilter.py \
|
||||
_matchessourcefilter.py \
|
||||
_regexpidof.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/citation
|
||||
|
||||
|
||||
@@ -26,23 +26,23 @@
|
||||
Package providing filter rules for GRAMPS.
|
||||
"""
|
||||
|
||||
from gen.filters.rules._HasCitationBase import HasCitationBase as HasCitation
|
||||
from gen.filters.rules._hascitationbase import HasCitationBase as HasCitation
|
||||
|
||||
from _AllCitations import AllCitations
|
||||
from _ChangedSince import ChangedSince
|
||||
from _CitationPrivate import CitationPrivate
|
||||
from _HasGallery import HasGallery
|
||||
from _HasIdOf import HasIdOf
|
||||
from _HasNote import HasNote
|
||||
from _HasNoteMatchingSubstringOf import HasNoteMatchingSubstringOf
|
||||
from _HasNoteRegexp import HasNoteRegexp
|
||||
from _HasReferenceCountOf import HasReferenceCountOf
|
||||
from _HasSource import HasSource
|
||||
from _MatchesFilter import MatchesFilter
|
||||
from _MatchesPageSubstringOf import MatchesPageSubstringOf
|
||||
from _MatchesRepositoryFilter import MatchesRepositoryFilter
|
||||
from _MatchesSourceFilter import MatchesSourceFilter
|
||||
from _RegExpIdOf import RegExpIdOf
|
||||
from _allcitations import AllCitations
|
||||
from _changedsince import ChangedSince
|
||||
from _citationprivate import CitationPrivate
|
||||
from _hasgallery import HasGallery
|
||||
from _hasidof import HasIdOf
|
||||
from _hasnote import HasNote
|
||||
from _hasnotematchingsubstringof import HasNoteMatchingSubstringOf
|
||||
from _hasnoteregexp import HasNoteRegexp
|
||||
from _hasreferencecountof import HasReferenceCountOf
|
||||
from _hassource import HasSource
|
||||
from _matchesfilter import MatchesFilter
|
||||
from _matchespagesubstringof import MatchesPageSubstringOf
|
||||
from _matchesrepositoryfilter import MatchesRepositoryFilter
|
||||
from _matchessourcefilter import MatchesSourceFilter
|
||||
from _regexpidof import RegExpIdOf
|
||||
|
||||
editor_rule_list = [
|
||||
AllCitations,
|
||||
|
||||
@@ -4,25 +4,25 @@
|
||||
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/event
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
_ChangedSince.py\
|
||||
_MatchesFilter.py\
|
||||
_EventPrivate.py\
|
||||
_HasNoteRegexp.py\
|
||||
_RegExpIdOf.py\
|
||||
_AllEvents.py\
|
||||
_HasCitation.py \
|
||||
_HasData.py\
|
||||
_HasGallery.py \
|
||||
_HasIdOf.py\
|
||||
_HasNote.py \
|
||||
_HasSourceCount.py \
|
||||
_HasType.py\
|
||||
_HasNoteMatchingSubstringOf.py\
|
||||
_HasReferenceCountOf.py\
|
||||
_MatchesPersonFilter.py\
|
||||
_MatchesSourceConfidence.py\
|
||||
_MatchesSourceFilter.py\
|
||||
_HasAttribute.py\
|
||||
_changedsince.py\
|
||||
_matchesfilter.py\
|
||||
_eventprivate.py\
|
||||
_hasnoteregexp.py\
|
||||
_regexpidof.py\
|
||||
_allevents.py\
|
||||
_hascitation.py \
|
||||
_hasdata.py\
|
||||
_hasgallery.py \
|
||||
_hasidof.py\
|
||||
_hasnote.py \
|
||||
_hassourcecount.py \
|
||||
_hastype.py\
|
||||
_hasnotematchingsubstringof.py\
|
||||
_hasreferencecountof.py\
|
||||
_matchespersonfilter.py\
|
||||
_matchessourceconfidence.py\
|
||||
_matchessourcefilter.py\
|
||||
_hasattribute.py\
|
||||
__init__.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/event
|
||||
|
||||
@@ -26,27 +26,27 @@
|
||||
Package providing filter rules for GRAMPS.
|
||||
"""
|
||||
|
||||
from gen.filters.rules._HasEventBase import HasEventBase as HasEvent
|
||||
from gen.filters.rules._haseventbase import HasEventBase as HasEvent
|
||||
|
||||
from _HasType import HasType
|
||||
from _AllEvents import AllEvents
|
||||
from _HasGallery import HasGallery
|
||||
from _HasIdOf import HasIdOf
|
||||
from _RegExpIdOf import RegExpIdOf
|
||||
from _HasCitation import HasCitation
|
||||
from _HasNote import HasNote
|
||||
from _HasNoteRegexp import HasNoteRegexp
|
||||
from _HasNoteMatchingSubstringOf import HasNoteMatchingSubstringOf
|
||||
from _HasReferenceCountOf import HasReferenceCountOf
|
||||
from _HasSourceCount import HasSourceCount
|
||||
from _EventPrivate import EventPrivate
|
||||
from _MatchesFilter import MatchesFilter
|
||||
from _MatchesPersonFilter import MatchesPersonFilter
|
||||
from _MatchesSourceConfidence import MatchesSourceConfidence
|
||||
from _MatchesSourceFilter import MatchesSourceFilter
|
||||
from _HasAttribute import HasAttribute
|
||||
from _HasData import HasData
|
||||
from _ChangedSince import ChangedSince
|
||||
from _hastype import HasType
|
||||
from _allevents import AllEvents
|
||||
from _hasgallery import HasGallery
|
||||
from _hasidof import HasIdOf
|
||||
from _regexpidof import RegExpIdOf
|
||||
from _hascitation import HasCitation
|
||||
from _hasnote import HasNote
|
||||
from _hasnoteregexp import HasNoteRegexp
|
||||
from _hasnotematchingsubstringof import HasNoteMatchingSubstringOf
|
||||
from _hasreferencecountof import HasReferenceCountOf
|
||||
from _hassourcecount import HasSourceCount
|
||||
from _eventprivate import EventPrivate
|
||||
from _matchesfilter import MatchesFilter
|
||||
from _matchespersonfilter import MatchesPersonFilter
|
||||
from _matchessourceconfidence import MatchesSourceConfidence
|
||||
from _matchessourcefilter import MatchesSourceFilter
|
||||
from _hasattribute import HasAttribute
|
||||
from _hasdata import HasData
|
||||
from _changedsince import ChangedSince
|
||||
|
||||
editor_rule_list = [
|
||||
AllEvents,
|
||||
|
||||
@@ -4,40 +4,40 @@
|
||||
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/family
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
_AllFamilies.py\
|
||||
_ChangedSince.py\
|
||||
_FamilyPrivate.py\
|
||||
_HasEvent.py\
|
||||
_HasAttribute.py\
|
||||
_HasCitation.py \
|
||||
_HasGallery.py \
|
||||
_HasIdOf.py\
|
||||
_HasLDS.py \
|
||||
_HasNote.py \
|
||||
_HasNoteMatchingSubstringOf.py\
|
||||
_HasNoteRegexp.py\
|
||||
_HasReferenceCountOf.py\
|
||||
_HasRelType.py\
|
||||
_HasSourceCount.py \
|
||||
_HasTag.py \
|
||||
_allfamilies.py\
|
||||
_changedsince.py\
|
||||
_familyprivate.py\
|
||||
_hasevent.py\
|
||||
_hasattribute.py\
|
||||
_hascitation.py \
|
||||
_hasgallery.py \
|
||||
_hasidof.py\
|
||||
_haslds.py \
|
||||
_hasnote.py \
|
||||
_hasnotematchingsubstringof.py\
|
||||
_hasnoteregexp.py\
|
||||
_hasreferencecountof.py\
|
||||
_hasreltype.py\
|
||||
_hassourcecount.py \
|
||||
_hastag.py \
|
||||
__init__.py\
|
||||
_IsBookmarked.py\
|
||||
_RegExpIdOf.py\
|
||||
_MatchesFilter.py\
|
||||
_MatchesSourceConfidence.py\
|
||||
_FatherHasNameOf.py\
|
||||
_FatherHasIdOf.py\
|
||||
_MotherHasNameOf.py\
|
||||
_MotherHasIdOf.py\
|
||||
_ChildHasNameOf.py\
|
||||
_ChildHasIdOf.py\
|
||||
_SearchFatherName.py\
|
||||
_SearchMotherName.py\
|
||||
_SearchChildName.py\
|
||||
_RegExpFatherName.py\
|
||||
_RegExpMotherName.py\
|
||||
_RegExpChildName.py\
|
||||
_MemberBase.py
|
||||
_isbookmarked.py\
|
||||
_regexpidof.py\
|
||||
_matchesfilter.py\
|
||||
_matchessourceconfidence.py\
|
||||
_fatherhasnameof.py\
|
||||
_fatherhasidof.py\
|
||||
_motherhasnameof.py\
|
||||
_motherhasidof.py\
|
||||
_childhasnameof.py\
|
||||
_childhasidof.py\
|
||||
_searchfathername.py\
|
||||
_searchmothername.py\
|
||||
_searchchildname.py\
|
||||
_regexpfathername.py\
|
||||
_regexpmothername.py\
|
||||
_regexpchildname.py\
|
||||
_memberbase.py
|
||||
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/family
|
||||
|
||||
@@ -26,39 +26,39 @@
|
||||
Package providing filter rules for GRAMPS.
|
||||
"""
|
||||
|
||||
from _SearchFatherName import SearchFatherName
|
||||
from _SearchMotherName import SearchMotherName
|
||||
from _SearchChildName import SearchChildName
|
||||
from _RegExpFatherName import RegExpFatherName
|
||||
from _RegExpMotherName import RegExpMotherName
|
||||
from _RegExpChildName import RegExpChildName
|
||||
from _searchfathername import SearchFatherName
|
||||
from _searchmothername import SearchMotherName
|
||||
from _searchchildname import SearchChildName
|
||||
from _regexpfathername import RegExpFatherName
|
||||
from _regexpmothername import RegExpMotherName
|
||||
from _regexpchildname import RegExpChildName
|
||||
|
||||
from _HasRelType import HasRelType
|
||||
from _AllFamilies import AllFamilies
|
||||
from _HasGallery import HasGallery
|
||||
from _HasIdOf import HasIdOf
|
||||
from _HasLDS import HasLDS
|
||||
from _RegExpIdOf import RegExpIdOf
|
||||
from _HasNote import HasNote
|
||||
from _HasNoteRegexp import HasNoteRegexp
|
||||
from _HasNoteMatchingSubstringOf import HasNoteMatchingSubstringOf
|
||||
from _HasSourceCount import HasSourceCount
|
||||
from _HasReferenceCountOf import HasReferenceCountOf
|
||||
from _HasCitation import HasCitation
|
||||
from _FamilyPrivate import FamilyPrivate
|
||||
from _HasAttribute import HasAttribute
|
||||
from _HasEvent import HasEvent
|
||||
from _IsBookmarked import IsBookmarked
|
||||
from _MatchesFilter import MatchesFilter
|
||||
from _MatchesSourceConfidence import MatchesSourceConfidence
|
||||
from _FatherHasNameOf import FatherHasNameOf
|
||||
from _FatherHasIdOf import FatherHasIdOf
|
||||
from _MotherHasNameOf import MotherHasNameOf
|
||||
from _MotherHasIdOf import MotherHasIdOf
|
||||
from _ChildHasNameOf import ChildHasNameOf
|
||||
from _ChildHasIdOf import ChildHasIdOf
|
||||
from _ChangedSince import ChangedSince
|
||||
from _HasTag import HasTag
|
||||
from _hasreltype import HasRelType
|
||||
from _allfamilies import AllFamilies
|
||||
from _hasgallery import HasGallery
|
||||
from _hasidof import HasIdOf
|
||||
from _haslds import HasLDS
|
||||
from _regexpidof import RegExpIdOf
|
||||
from _hasnote import HasNote
|
||||
from _hasnoteregexp import HasNoteRegexp
|
||||
from _hasnotematchingsubstringof import HasNoteMatchingSubstringOf
|
||||
from _hassourcecount import HasSourceCount
|
||||
from _hasreferencecountof import HasReferenceCountOf
|
||||
from _hascitation import HasCitation
|
||||
from _familyprivate import FamilyPrivate
|
||||
from _hasattribute import HasAttribute
|
||||
from _hasevent import HasEvent
|
||||
from _isbookmarked import IsBookmarked
|
||||
from _matchesfilter import MatchesFilter
|
||||
from _matchessourceconfidence import MatchesSourceConfidence
|
||||
from _fatherhasnameof import FatherHasNameOf
|
||||
from _fatherhasidof import FatherHasIdOf
|
||||
from _motherhasnameof import MotherHasNameOf
|
||||
from _motherhasidof import MotherHasIdOf
|
||||
from _childhasnameof import ChildHasNameOf
|
||||
from _childhasidof import ChildHasIdOf
|
||||
from _changedsince import ChangedSince
|
||||
from _hastag import HasTag
|
||||
|
||||
editor_rule_list = [
|
||||
AllFamilies,
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user