Remove references to HasCompleteRecord and HasMarkerOf rules

svn: r16026
This commit is contained in:
Nick Hall 2010-10-23 09:49:59 +00:00
parent c3e527b4fb
commit 07663753ff
3 changed files with 0 additions and 5 deletions

View File

@ -27,7 +27,6 @@ Package providing filter rules for GRAMPS.
from _AllNotes import AllNotes from _AllNotes import AllNotes
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _HasMarkerOf import HasMarkerOf
from _RegExpIdOf import RegExpIdOf from _RegExpIdOf import RegExpIdOf
from _MatchesRegexpOf import MatchesRegexpOf from _MatchesRegexpOf import MatchesRegexpOf
from _MatchesSubstringOf import MatchesSubstringOf from _MatchesSubstringOf import MatchesSubstringOf
@ -41,7 +40,6 @@ from _HasTag import HasTag
editor_rule_list = [ editor_rule_list = [
AllNotes, AllNotes,
HasIdOf, HasIdOf,
HasMarkerOf,
RegExpIdOf, RegExpIdOf,
HasNote, HasNote,
MatchesRegexpOf, MatchesRegexpOf,

View File

@ -34,7 +34,6 @@ from _HasAttribute import HasAttribute
from _HasBirth import HasBirth from _HasBirth import HasBirth
from _HasCommonAncestorWith import HasCommonAncestorWith from _HasCommonAncestorWith import HasCommonAncestorWith
from _HasCommonAncestorWithFilterMatch import HasCommonAncestorWithFilterMatch from _HasCommonAncestorWithFilterMatch import HasCommonAncestorWithFilterMatch
from _HasCompleteRecord import HasCompleteRecord
from _HasDeath import HasDeath from _HasDeath import HasDeath
from _HasEvent import HasEvent from _HasEvent import HasEvent
from _HasFamilyAttribute import HasFamilyAttribute from _HasFamilyAttribute import HasFamilyAttribute
@ -121,7 +120,6 @@ editor_rule_list = [
HasRelationship, HasRelationship,
HasDeath, HasDeath,
HasBirth, HasBirth,
HasCompleteRecord,
HasEvent, HasEvent,
HasFamilyEvent, HasFamilyEvent,
HasAttribute, HasAttribute,

View File

@ -172,7 +172,6 @@ old_names_2_class = {
Rules.Person.HasCommonAncestorWithFilterMatch, Rules.Person.HasCommonAncestorWithFilterMatch,
"Is a female" : Rules.Person.IsFemale, "Is a female" : Rules.Person.IsFemale,
"Is a male" : Rules.Person.IsMale, "Is a male" : Rules.Person.IsMale,
"Has complete record" : Rules.Person.HasCompleteRecord,
"Has the personal event" : Rules.Person.HasEvent, "Has the personal event" : Rules.Person.HasEvent,
"Has the family event" : Rules.Person.HasFamilyEvent, "Has the family event" : Rules.Person.HasFamilyEvent,
"Has the personal attribute" : Rules.Person.HasAttribute, "Has the personal attribute" : Rules.Person.HasAttribute,