* src/DataViews/MyGrampsView.py:
* src/DataViews/SourceView.py: * src/DataViews/__init__.py: * src/DataViews/NoteView.py: * src/DataViews/PersonView.py: * src/DataViews/RelationView.py: * src/DataViews/MapView.py: * src/DataViews/MediaView.py: * src/DataViews/RepositoryView.py: * src/DataViews/EventView.py: * src/DataViews/FamilyList.py: * src/DataViews/PedigreeView.py: * src/DataViews/PlaceView.py: * src/DataViews/Makefile.am: Renamed DataViews views to new style 2007-12-27 Douglas S. Blank <dblank@cs.brynmawr.edu> svn: r9598
This commit is contained in:
parent
becd01ef12
commit
65f93ebe47
17
ChangeLog
17
ChangeLog
@ -1,3 +1,20 @@
|
||||
2007-12-27 Douglas S. Blank <dblank@cs.brynmawr.edu>
|
||||
* src/DataViews/MyGrampsView.py:
|
||||
* src/DataViews/SourceView.py:
|
||||
* src/DataViews/__init__.py:
|
||||
* src/DataViews/NoteView.py:
|
||||
* src/DataViews/PersonView.py:
|
||||
* src/DataViews/RelationView.py:
|
||||
* src/DataViews/MapView.py:
|
||||
* src/DataViews/MediaView.py:
|
||||
* src/DataViews/RepositoryView.py:
|
||||
* src/DataViews/EventView.py:
|
||||
* src/DataViews/FamilyList.py:
|
||||
* src/DataViews/PedigreeView.py:
|
||||
* src/DataViews/PlaceView.py:
|
||||
* src/DataViews/Makefile.am:
|
||||
Renamed DataViews views to new style
|
||||
|
||||
2007-12-27 Douglas S. Blank <dblank@cs.brynmawr.edu>
|
||||
* src/DataViews/_MyGrampsView.py: added API for data save/load
|
||||
* src/plugins/DefaultGadgets.py: top surnames takes count; TODO saves
|
||||
|
@ -7,16 +7,17 @@ pkgdatadir = $(datadir)/@PACKAGE@/DataViews
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
__init__.py\
|
||||
_PersonView.py\
|
||||
_RelationView.py\
|
||||
_FamilyList.py\
|
||||
_PedigreeView.py\
|
||||
_EventView.py\
|
||||
_SourceView.py\
|
||||
_PlaceView.py\
|
||||
_MediaView.py\
|
||||
_NoteView.py\
|
||||
_RepositoryView.py
|
||||
MyGrampsView.py\
|
||||
PersonView.py\
|
||||
RelationView.py\
|
||||
FamilyList.py\
|
||||
PedigreeView.py\
|
||||
EventView.py\
|
||||
SourceView.py\
|
||||
PlaceView.py\
|
||||
MediaView.py\
|
||||
NoteView.py\
|
||||
RepositoryView.py
|
||||
|
||||
# _MapView.py
|
||||
|
||||
|
@ -26,17 +26,17 @@ Package init for the DataView package
|
||||
__author__ = "Don Allingham"
|
||||
__revision__ = "$Revision: $"
|
||||
|
||||
from _MyGrampsView import MyGrampsView, register, Gadget
|
||||
from _PersonView import PersonView
|
||||
from _RelationView import RelationshipView
|
||||
from _FamilyList import FamilyListView
|
||||
from _PedigreeView import PedigreeView
|
||||
from _EventView import EventView
|
||||
from _SourceView import SourceView
|
||||
from _PlaceView import PlaceView
|
||||
from _MediaView import MediaView
|
||||
from _RepositoryView import RepositoryView
|
||||
from _NoteView import NoteView
|
||||
from MyGrampsView import MyGrampsView, register, Gadget
|
||||
from PersonView import PersonView
|
||||
from RelationView import RelationshipView
|
||||
from FamilyList import FamilyListView
|
||||
from PedigreeView import PedigreeView
|
||||
from EventView import EventView
|
||||
from SourceView import SourceView
|
||||
from PlaceView import PlaceView
|
||||
from MediaView import MediaView
|
||||
from RepositoryView import RepositoryView
|
||||
from NoteView import NoteView
|
||||
|
||||
try:
|
||||
import Config
|
||||
|
Loading…
Reference in New Issue
Block a user