fixed typos
svn: r12984
This commit is contained in:
parent
63094c5aee
commit
c1be765f7a
@ -152,7 +152,7 @@ class BaseObject(object):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return []
|
||||
|
@ -133,7 +133,7 @@ class ChildRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase):
|
||||
Return the list of child objects which may, directly or through their
|
||||
children, reference primary objects..
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.source_list
|
||||
|
@ -231,7 +231,7 @@ class Event(SourceBase, NoteBase, MediaBase, AttributeBase,
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.get_sourcref_child_list() + self.source_list
|
||||
|
@ -46,7 +46,7 @@ class EventRef(SecondaryObject, PrivacyBase, NoteBase, AttributeBase, RefBase):
|
||||
Event reference class.
|
||||
|
||||
This class is for keeping information about how the person relates
|
||||
to the refereneced event.
|
||||
to the referenced event.
|
||||
"""
|
||||
|
||||
def __init__(self, source=None):
|
||||
@ -144,7 +144,7 @@ class EventRef(SecondaryObject, PrivacyBase, NoteBase, AttributeBase, RefBase):
|
||||
Return the list of child objects which may, directly or through their
|
||||
children, reference primary objects..
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.get_sourcref_child_list()
|
||||
|
@ -291,7 +291,7 @@ class Family(SourceBase, NoteBase, MediaBase, AttributeBase, LdsOrdBase,
|
||||
Return the list of child objects which may, directly or through their
|
||||
children, reference primary objects..
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.get_sourcref_child_list() + self.source_list
|
||||
|
@ -199,7 +199,7 @@ class LdsOrd(SecondaryObject, SourceBase, NoteBase,
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.source_list
|
||||
|
@ -181,7 +181,7 @@ class MediaObject(SourceBase, NoteBase, DateBase, AttributeBase,
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.attribute_list + self.source_list
|
||||
|
@ -126,7 +126,7 @@ class MediaRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase,
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.attribute_list + self.source_list
|
||||
|
@ -164,7 +164,7 @@ class Name(SecondaryObject, PrivacyBase, SourceBase, NoteBase, DateBase):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.source_list
|
||||
|
@ -359,7 +359,7 @@ class Person(SourceBase, NoteBase, AttributeBase, MediaBase,
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
#don't count double, notes can be found in sourcref
|
||||
|
@ -126,7 +126,7 @@ class PersonRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects..
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.source_list
|
||||
|
@ -179,7 +179,7 @@ class Place(SourceBase, NoteBase, MediaBase, UrlBase, PrimaryObject):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.media_list + self.source_list
|
||||
|
@ -125,7 +125,7 @@ class Repository(NoteBase, AddressBase, UrlBase, PrimaryObject):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.address_list
|
||||
|
@ -177,7 +177,7 @@ class Source(MediaBase, NoteBase, PrimaryObject):
|
||||
Return the list of child objects which may, directly or through
|
||||
their children, reference primary objects.
|
||||
|
||||
:returns: Returns the list of objects refereincing primary objects.
|
||||
:returns: Returns the list of objects referencing primary objects.
|
||||
:rtype: list
|
||||
"""
|
||||
return self.media_list + self.reporef_list
|
||||
|
Loading…
Reference in New Issue
Block a user