2008-01-24 Raphael Ackermann <raphael.ackermann@gmail.com>

Removed all the __author__, __revision__ and __version__ statements

svn: r9928
This commit is contained in:
Raphael Ackermann 2008-01-24 20:38:10 +00:00
parent a26c5dab24
commit 506eb32637
127 changed files with 22 additions and 320 deletions

View File

@ -1,4 +1,7 @@
2008-01-22 Raphael Ackermann <raphael.ackermann@gmail.com> 2008-01-24 Raphael Ackermann <raphael.ackermann@gmail.com>
Removed all the __author__, __revision__ and __version__ statements
2008-01-24 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/PageView.py: import sgettext instead of gettext * src/PageView.py: import sgettext instead of gettext
* src/DataViews.py: rename Family List View to Families View * src/DataViews.py: rename Family List View to Families View

View File

@ -22,9 +22,6 @@
""" Unittest for testing POTFILES.in and Makefile contents """ """ Unittest for testing POTFILES.in and Makefile contents """
__author__ = "Douglas S. Blank <dblank@cs.brynmawr.edu>"
__revision__ = "$Revision: $"
import unittest import unittest
import os import os
import glob import glob

View File

@ -27,9 +27,6 @@ Provides base interface to text based documents. Specific document
interfaces should be derived from the core classes. interfaces should be derived from the core classes.
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9679 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -22,9 +22,6 @@
"Handle bookmarks for the gramps interface" "Handle bookmarks for the gramps interface"
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9748 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Standard python modules # Standard python modules

View File

@ -20,12 +20,9 @@
# $Id$ # $Id$
""" """
Provides the event view Provides the event view.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9722 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GTK/Gnome modules # GTK/Gnome modules
@ -233,8 +230,8 @@ class EventView(PageView.ListView):
event = db.get_event_from_handle(ehandle) event = db.get_event_from_handle(ehandle)
ans = DelEventQuery(self.dbstate,self.uistate, ans = DelEventQuery(self.dbstate, self.uistate, event,
event,person_list,family_list) person_list, family_list)
if len(person_list) + len(family_list) > 0: if len(person_list) + len(family_list) > 0:
msg = _('This event is currently being used. Deleting it ' msg = _('This event is currently being used. Deleting it '

View File

@ -21,12 +21,9 @@
# $Id$ # $Id$
""" """
GrampletView interface GrampletView interface.
""" """
__author__ = "Doug Blank"
__revision__ = "$Revision: $"
import gtk import gtk
import gobject import gobject
import traceback import traceback

View File

@ -20,12 +20,9 @@
# $Id$ # $Id$
""" """
Media View Media View.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9722 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -20,12 +20,9 @@
# $Id$ # $Id$
""" """
Place View Place View.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9770 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GTK/Gnome modules # GTK/Gnome modules
@ -47,7 +44,7 @@ import Config
import ColumnOrder import ColumnOrder
from gen.lib import Note from gen.lib import Note
from DdTargets import DdTargets from DdTargets import DdTargets
from QuestionDialog import QuestionDialog, ErrorDialog from QuestionDialog import QuestionDialog
from Filters.SideBar import NoteSidebarFilter from Filters.SideBar import NoteSidebarFilter
from Editors import EditNote, DeleteNoteQuery from Editors import EditNote, DeleteNoteQuery

View File

@ -21,12 +21,9 @@
# $Id$ # $Id$
""" """
PersonView interface PersonView interface.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9861 $"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -23,9 +23,6 @@
Place View Place View
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9722 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GTK/Gnome modules # GTK/Gnome modules

View File

@ -23,9 +23,6 @@
Relationship View Relationship View
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9870 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -23,9 +23,6 @@
Repository View Repository View
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9722 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GTK/Gnome modules # GTK/Gnome modules

View File

@ -23,9 +23,6 @@
Source View Source View
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9722 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GTK/Gnome modules # GTK/Gnome modules

View File

@ -20,12 +20,9 @@
# $Id$ # $Id$
""" """
Package init for the DataView package Package init for the DataViews package.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: $"
from GrampletView import GrampletView, register, Gramplet from GrampletView import GrampletView, register, Gramplet
from PersonView import PersonView from PersonView import PersonView
from RelationView import RelationshipView from RelationView import RelationshipView

View File

@ -33,9 +33,6 @@ The DateEdit.DateEditor provides a dialog in which the date can be
unambiguously built using UI controls such as menus and spin buttons. unambiguously built using UI controls such as menus and spin buttons.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -25,9 +25,6 @@ U.S English date display class. Should serve as the base class for all
localized tasks. localized tasks.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9806 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# set up logging # set up logging

View File

@ -27,9 +27,6 @@ date parsing class. The default, base class provides parsing for
English. English.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9713 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -23,9 +23,6 @@ Provides the management of databases. This includes opening, renaming,
creating, and deleting of databases. creating, and deleting of databases.
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 8197 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Standard python modules # Standard python modules

View File

@ -22,9 +22,6 @@
Provides the database state class Provides the database state class
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 8032 $"
from gen.db import GrampsDbBase from gen.db import GrampsDbBase
from gen.utils import GrampsDBCallback from gen.utils import GrampsDBCallback
import Config import Config

View File

@ -24,9 +24,6 @@
TreeModel for the GRAMPS Person tree. TreeModel for the GRAMPS Person tree.
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9689 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Standard python modules # Standard python modules

View File

@ -25,9 +25,6 @@ The EditAttribute module provides the AttributeEditor class. This provides a
mechanism for the user to edit attribute information. mechanism for the user to edit attribute information.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -25,9 +25,6 @@ The EditLdsOrd module provides the EditLdsOrd class. This provides a
mechanism for the user to edit personal LDS information. mechanism for the user to edit personal LDS information.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 6248 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -25,9 +25,6 @@ EditPerson Dialog. Provides the interface to allow the GRAMPS program
to edit information about a particular Person. to edit information about a particular Person.
""" """
__author__ = "Don Allingham"
__revision__ = "$Revision: 9908 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Standard python modules # Standard python modules

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:_EditFilter.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Custom Filter Editor tool. Custom Filter Editor tool.
""" """
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,8 +24,6 @@
Custom Filter Editor tool. Custom Filter Editor tool.
""" """
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:_FilterEditor.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Custom Filter Editor tool. Custom Filter Editor tool.
""" """
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,8 +24,6 @@
Custom Filter Editor tool. Custom Filter Editor tool.
""" """
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -25,8 +25,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from Filters.Rules._HasEventBase import HasEventBase as HasEvent from Filters.Rules._HasEventBase import HasEventBase as HasEvent
from _HasType import HasType from _HasType import HasType

View File

@ -24,8 +24,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _SearchFatherName import SearchFatherName from _SearchFatherName import SearchFatherName
from _SearchMotherName import SearchMotherName from _SearchMotherName import SearchMotherName
from _SearchChildName import SearchChildName from _SearchChildName import SearchChildName

View File

@ -24,8 +24,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _AllMedia import AllMedia from _AllMedia import AllMedia
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _RegExpIdOf import RegExpIdOf from _RegExpIdOf import RegExpIdOf

View File

@ -25,8 +25,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _AllNotes import AllNotes from _AllNotes import AllNotes
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _HasMarkerOf import HasMarkerOf from _HasMarkerOf import HasMarkerOf

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:__init__.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _Disconnected import Disconnected from _Disconnected import Disconnected
from _Everyone import Everyone from _Everyone import Everyone
from _FamilyWithIncompleteEvent import FamilyWithIncompleteEvent from _FamilyWithIncompleteEvent import FamilyWithIncompleteEvent

View File

@ -24,8 +24,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _AllPlaces import AllPlaces from _AllPlaces import AllPlaces
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _RegExpIdOf import RegExpIdOf from _RegExpIdOf import RegExpIdOf

View File

@ -24,8 +24,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _AllRepos import AllRepos from _AllRepos import AllRepos
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _RegExpIdOf import RegExpIdOf from _RegExpIdOf import RegExpIdOf

View File

@ -24,8 +24,6 @@
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
from _AllSources import AllSources from _AllSources import AllSources
from _HasIdOf import HasIdOf from _HasIdOf import HasIdOf
from _RegExpIdOf import RegExpIdOf from _RegExpIdOf import RegExpIdOf

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:__init__.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Package providing filter rules for GRAMPS. Package providing filter rules for GRAMPS.
""" """
__author__ = "Don Allingham"
# Need to expose this to be available for filter plugins: # Need to expose this to be available for filter plugins:
# the plugins should say: from Filters.Rules import Rule # the plugins should say: from Filters.Rules import Rule
from _Rule import Rule from _Rule import Rule

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:__init__.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Package providing sidebar filters for GRAMPS. Package providing sidebar filters for GRAMPS.
""" """
__author__ = "Don Allingham"
from _SidebarFilter import SidebarFilter from _SidebarFilter import SidebarFilter
from _PersonSidebarFilter import PersonSidebarFilter from _PersonSidebarFilter import PersonSidebarFilter
from _FamilySidebarFilter import FamilySidebarFilter from _FamilySidebarFilter import FamilySidebarFilter

View File

@ -18,14 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:__init__.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Package providing filtering framework for GRAMPS. Package providing filtering framework for GRAMPS.
""" """
__author__ = "Don Allingham"
SystemFilters = None SystemFilters = None
CustomFilters = None CustomFilters = None

View File

@ -20,9 +20,6 @@
"Import from GEDCOM" "Import from GEDCOM"
__revision__ = "$Revision: $"
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -81,9 +81,6 @@ all lines until the next level 2 token is found (in this case, skipping the
"3 NOTE DATA" line. "3 NOTE DATA" line.
""" """
__revision__ = "$Revision: $"
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,9 +24,6 @@
Import from GEDCOM Import from GEDCOM
""" """
__revision__ = "$Revision: $"
__author__ = "Don Allingham"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -35,8 +35,6 @@ on using these factories see the _GrampsDbUtilsFactories.py file comments.
""" """
__version__ = "$Revision: 9818 $"
from _GrampsDbWRFactories import \ from _GrampsDbWRFactories import \
gramps_db_reader_factory gramps_db_reader_factory

View File

@ -22,9 +22,6 @@
"Handling formatted ('rich text') strings" "Handling formatted ('rich text') strings"
__revision__ = "$Revision: 9778 $"
__author__ = "Zsolt Foldvari"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -25,10 +25,6 @@ the history changes, the UI XML string and the action groups are updated.
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 8680 $"
#------------------------------------------------------------------- #-------------------------------------------------------------------
# #
# constants # constants

View File

@ -22,9 +22,6 @@
"ToolGeneration Framework" "ToolGeneration Framework"
__author__ = "Alex Roitman"
__version__ = "$Revision: 9830 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,9 +24,6 @@
This module provides the functions to build the quick report context menu's This module provides the functions to build the quick report context menu's
""" """
__author__ = "B. Malengier"
__revision__ = "$Revision: 8857 $"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# python modules # python modules

View File

@ -25,9 +25,6 @@
Paragraph/Font style editor Paragraph/Font style editor
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 8948 $"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,9 +24,6 @@
"Report Generation Framework" "Report Generation Framework"
__author__ = "David R. Hampton, Donald N. Allingham"
__version__ = "$Revision: 9433 $"
from _Constants import * from _Constants import *
from _Report import Report from _Report import Report

View File

@ -20,11 +20,6 @@
# $Id$ # $Id$
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9008 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# internationalization # internationalization

View File

@ -23,9 +23,6 @@
"""Handling of selection dialog for selecting notes """Handling of selection dialog for selecting notes
""" """
__author__ = "Benny Malengier"
__revision__ = "$Revision$"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python Modules # Python Modules

View File

@ -23,9 +23,6 @@
"Simple access routines" "Simple access routines"
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 7972 $"
from _SimpleAccess import * from _SimpleAccess import *
from _SimpleDoc import * from _SimpleDoc import *
from _SimpleTable import * from _SimpleTable import *

View File

@ -32,9 +32,6 @@ Will return a value such as:
Mary Smith was born on 3/28/1923. Mary Smith was born on 3/28/1923.
""" """
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9101 $"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Gramps modules # Gramps modules

View File

@ -4,10 +4,9 @@
# Copyright: Toshio Kuratomi # Copyright: Toshio Kuratomi
# License: GPL # License: GPL
# Id: $Id$ # Id: $Id$
"""A tooltip class for TreeViews """A tooltip class for TreeViews
""" """
__revision__ = "$Rev: 5482 $"
# #
# Support for text markup added: March 05 - rjt-gramps <at> thegrindstone.me.uk # Support for text markup added: March 05 - rjt-gramps <at> thegrindstone.me.uk

View File

@ -18,15 +18,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$ # $Id:ViewManager.py 9912 2008-01-22 09:17:46Z acraphae $
""" """
Manages the main window and the pluggable views Manages the main window and the pluggable views
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9821 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Standard python modules # Standard python modules

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id: # $Id: $
import os import os
import csv import csv

View File

@ -23,9 +23,6 @@
"""Report output generator based on Cairo. """Report output generator based on Cairo.
""" """
__revision__ = "$Revision: 9773 $"
__author__ = "Zsolt Foldvari"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -23,9 +23,6 @@
"""Printing interface based on gtk.Print* classes. """Printing interface based on gtk.Print* classes.
""" """
__revision__ = "$Revision: 9044 $"
__author__ = "Zsolt Foldvari"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -23,9 +23,6 @@
"""PDF output generator based on Cairo. """PDF output generator based on Cairo.
""" """
__revision__ = "$Revision: 9516 $"
__author__ = "Zsolt Foldvari"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -18,5 +18,4 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
__version__ = "$Revision: $"
__all__ = [ "proxy", "db", "lib", "utils" ] __all__ = [ "proxy", "db", "lib", "utils" ]

View File

@ -18,8 +18,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
__version__ = "$Revision: $"
from base import * from base import *
#from callback import * #from callback import *
from cursor import * from cursor import *

View File

@ -25,9 +25,6 @@ Base class for the GRAMPS databases. All database interfaces should inherit
from this class. from this class.
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9770 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# libraries # libraries

View File

@ -22,10 +22,6 @@
"""The core library of GRAMPS objects""" """The core library of GRAMPS objects"""
__author__ = "Donald N. Allingham"
__version__ = "$Revision: 9101 $"
__revision__ = "$Revision: 9101 $"
# Dates # Dates
from date import Date, DateError from date import Date, DateError

View File

@ -24,8 +24,6 @@
Address class for GRAMPS Address class for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
AddressBase class for GRAMPS AddressBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
AttributeBase class for GRAMPS AttributeBase class for GRAMPS
""" """
__revision__ = "$Revision: 9102 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Attribute class for GRAMPS Attribute class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -27,7 +27,6 @@ Provides the different Attribute Types for GRAMPS
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _
__revision__ = "$Revision: 9101 $"
class AttributeType(GrampsType): class AttributeType(GrampsType):

View File

@ -24,8 +24,6 @@
Base Object class for GRAMPS Base Object class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,8 +24,6 @@
Provides calendar to sdn (serial date number) conversion. Provides calendar to sdn (serial date number) conversion.
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,8 +24,6 @@
Child Reference class for GRAMPS. Child Reference class for GRAMPS.
""" """
__revision__ = "$Revision: 9507 $"
from types import InstanceType from types import InstanceType
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -27,8 +27,6 @@ Provides the different child reference types
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _
__revision__ = "$Revision: 9101 $"
class ChildRefType(GrampsType): class ChildRefType(GrampsType):
""" """
Provides the different ChildRef types. Provides the different ChildRef types.

View File

@ -23,9 +23,6 @@
"""Support for dates """Support for dates
""" """
__author__ = "Donald N. Allingham"
__revision__ = "$Revision: 9709 $"
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Python modules # Python modules

View File

@ -24,8 +24,6 @@
DateBase class for GRAMPS DateBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
from types import InstanceType from types import InstanceType
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -24,8 +24,6 @@
Event object for GRAMPS Event object for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Event Reference class for GRAMPS Event Reference class for GRAMPS
""" """
__revision__ = "$Revision: 9532 $"
from types import InstanceType from types import InstanceType
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -23,8 +23,6 @@
Provides the different event roles Provides the different event roles
""" """
__revision__ = "$Revision: 9101 $"
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _

View File

@ -24,8 +24,6 @@
Provides the different event types Provides the different event types
""" """
__revision__ = "$Revision: 9101 $"
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _

View File

@ -24,8 +24,6 @@
Family object for GRAMPS Family object for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -23,8 +23,6 @@
Provides the different family reference types Provides the different family reference types
""" """
__revision__ = "$Revision: 9101 $"
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _

View File

@ -24,8 +24,6 @@
Gender statistics kept in GRAMPS database. Gender statistics kept in GRAMPS database.
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Base type for all gramps types Base type for all gramps types
""" """
__revision__ = "$Revision: 9101 $"
from gettext import gettext as _ from gettext import gettext as _
def init_map(data, key_col, data_col): def init_map(data, key_col, data_col):

View File

@ -23,7 +23,6 @@
""" """
LDS Ordinance class for GRAMPS LDS Ordinance class for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #

View File

@ -24,8 +24,6 @@
LdsOrdBase class for GRAMPS LdsOrdBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Location class for GRAMPS Location class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
LocationBase class for GRAMPS LocationBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# LocationBase class # LocationBase class

View File

@ -23,8 +23,6 @@
Marker types Marker types
""" """
__revision__ = "$Revision: 9101 $"
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _

View File

@ -24,8 +24,6 @@
MediaBase class for GRAMPS MediaBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Media object for GRAMPS Media object for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,8 +24,6 @@
Media Reference class for GRAMPS Media Reference class for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Name class for GRAMPS Name class for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Name types Name types
""" """
__revision__ = "$Revision: 9101 $"
from grampstype import GrampsType, init_map from grampstype import GrampsType, init_map
from gettext import gettext as _ from gettext import gettext as _

View File

@ -24,8 +24,6 @@
Note class for GRAMPS Note class for GRAMPS
""" """
__revision__ = "$Revision: 9161 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,8 +24,6 @@
NoteBase class for GRAMPS NoteBase class for GRAMPS
""" """
__revision__ = "$Revision: 9532 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# NoteBase class # NoteBase class

View File

@ -24,8 +24,6 @@
Note types Note types
""" """
__revision__ = "$Revision: 9403 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,8 +24,6 @@
Person object for GRAMPS Person object for GRAMPS
""" """
__revision__ = "$Revision: 9532 $"
from types import InstanceType from types import InstanceType
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -24,8 +24,6 @@
Person Reference class for GRAMPS. Person Reference class for GRAMPS.
""" """
__revision__ = "$Revision: 9507 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules

View File

@ -24,8 +24,6 @@
Place object for GRAMPS Place object for GRAMPS
""" """
__revision__ = "$Revision: 9507 $"
from types import InstanceType from types import InstanceType
#------------------------------------------------------------------------- #-------------------------------------------------------------------------

View File

@ -24,8 +24,6 @@
PlaceBase class for GRAMPS PlaceBase class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# PlaceBase class # PlaceBase class

View File

@ -24,8 +24,6 @@
Basic Primary Object class for GRAMPS Basic Primary Object class for GRAMPS
""" """
__revision__ = "$Revision: 9121 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# standard python modules # standard python modules

View File

@ -24,8 +24,6 @@
PrivacyBase Object class for GRAMPS PrivacyBase Object class for GRAMPS
""" """
__revision__ = "$Revision: 9101 $"
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# PrivacyBase Object # PrivacyBase Object

Some files were not shown because too many files have changed in this diff Show More