module renames
svn: r6072
This commit is contained in:
		@@ -9,7 +9,7 @@
 | 
			
		||||
	* src/DataViews/_FamilyList.py: moved to DataViews directory
 | 
			
		||||
	* src/DataViews/_PlaceView.py: moved to DataViews directory
 | 
			
		||||
	* src/DataViews/_PersonView.py: moved to DataViews directory
 | 
			
		||||
	* src/DataViews/_PedView.py: moved to DataViews directory
 | 
			
		||||
	* src/DataViews/_PedigreeView.py: moved to DataViews directory
 | 
			
		||||
	* src/DataViews/_RepositoryView.py: moved to DataViews directory
 | 
			
		||||
	
 | 
			
		||||
2006-03-04  Martin Hawlisch  <Martin.Hawlisch@gmx.de>
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@ AC_PREREQ(2.57)
 | 
			
		||||
AC_INIT(gramps, 2.1.0, gramps-bugs@lists.sourceforge.net)
 | 
			
		||||
AC_CONFIG_SRCDIR(src/gramps.py)
 | 
			
		||||
AM_INIT_AUTOMAKE(1.6.3)
 | 
			
		||||
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
 | 
			
		||||
RELEASE=0.SVN$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
 | 
			
		||||
dnl RELEASE=1
 | 
			
		||||
 | 
			
		||||
VERSIONSTRING=$VERSION
 | 
			
		||||
 
 | 
			
		||||
@@ -7,16 +7,16 @@ pkgdatadir = $(datadir)/@PACKAGE@/DataViews
 | 
			
		||||
 | 
			
		||||
pkgdata_PYTHON = \
 | 
			
		||||
	__init__.py\
 | 
			
		||||
	PersonView.py\
 | 
			
		||||
	FamilyView.py\
 | 
			
		||||
	FamilyList.py\
 | 
			
		||||
	PedView.py\
 | 
			
		||||
	EventView.py\
 | 
			
		||||
	SourceView.py\
 | 
			
		||||
	PlaceView.py\
 | 
			
		||||
	MediaView.py\
 | 
			
		||||
	MapView.py\
 | 
			
		||||
	RepositoryView.py
 | 
			
		||||
	_PersonView.py\
 | 
			
		||||
	_FamilyView.py\
 | 
			
		||||
	_FamilyList.py\
 | 
			
		||||
	_PedigreeView.py\
 | 
			
		||||
	_EventView.py\
 | 
			
		||||
	_SourceView.py\
 | 
			
		||||
	_PlaceView.py\
 | 
			
		||||
	_MediaView.py\
 | 
			
		||||
	_MapView.py\
 | 
			
		||||
	_RepositoryView.py
 | 
			
		||||
 | 
			
		||||
pkgpyexecdir = @pkgpyexecdir@/DataViews
 | 
			
		||||
pkgpythondir = @pkgpythondir@/DataViews
 | 
			
		||||
 
 | 
			
		||||
@@ -379,7 +379,7 @@ class FormattingHelper:
 | 
			
		||||
# PedigreeView
 | 
			
		||||
#
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
class PedView(PageView.PersonNavView):
 | 
			
		||||
class PedigreeView(PageView.PersonNavView):
 | 
			
		||||
 | 
			
		||||
    def __init__(self,dbstate,uistate):
 | 
			
		||||
        PageView.PersonNavView.__init__(self,'Pedigree View',dbstate,uistate)
 | 
			
		||||
@@ -19,18 +19,18 @@
 | 
			
		||||
 | 
			
		||||
# $Id: __init__.py 6067 2006-03-04 05:24:16Z dallingham $
 | 
			
		||||
 | 
			
		||||
from PersonView import PersonView
 | 
			
		||||
from FamilyView import FamilyView
 | 
			
		||||
from FamilyList import FamilyListView
 | 
			
		||||
from PedView import PedView
 | 
			
		||||
from EventView import EventView
 | 
			
		||||
from SourceView import SourceView
 | 
			
		||||
from PlaceView import PlaceView
 | 
			
		||||
from MediaView import MediaView
 | 
			
		||||
from MapView import MapView
 | 
			
		||||
from RepositoryView import RepositoryView
 | 
			
		||||
from _PersonView import PersonView
 | 
			
		||||
from _FamilyView import FamilyView
 | 
			
		||||
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 _MapView import MapView
 | 
			
		||||
from _RepositoryView import RepositoryView
 | 
			
		||||
 | 
			
		||||
def get_views():
 | 
			
		||||
    return [PersonView, FamilyView, FamilyListView, PedView,
 | 
			
		||||
    return [PersonView, FamilyView, FamilyListView, PedigreeView,
 | 
			
		||||
            EventView, SourceView, PlaceView, MediaView,
 | 
			
		||||
            MapView, RepositoryView]
 | 
			
		||||
 
 | 
			
		||||
@@ -7,9 +7,7 @@ pkgdatadir = $(datadir)/@PACKAGE@/images
 | 
			
		||||
dist_pkgdata_DATA = \
 | 
			
		||||
	bad.png\
 | 
			
		||||
	caution.png\
 | 
			
		||||
	edit.png\
 | 
			
		||||
	edit_sm.png\
 | 
			
		||||
	events24.png\
 | 
			
		||||
	events.png\
 | 
			
		||||
	flist.svg\
 | 
			
		||||
	good.png\
 | 
			
		||||
@@ -18,7 +16,6 @@ dist_pkgdata_DATA = \
 | 
			
		||||
	land_shallow_topo_350.jpg\
 | 
			
		||||
	locked.png\
 | 
			
		||||
	logo.png\
 | 
			
		||||
	media.png\
 | 
			
		||||
	media.svg\
 | 
			
		||||
	ped24.png\
 | 
			
		||||
	person.svg\
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 1.2 KiB  | 
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 781 B  | 
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 3.7 KiB  | 
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB  | 
		Reference in New Issue
	
	Block a user