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