[Thuban-commits] r2725 - in trunk/thuban: . Thuban/UI

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Feb 20 11:36:21 CET 2007


Author: bernhard
Date: 2007-02-20 11:36:20 +0100 (Tue, 20 Feb 2007)
New Revision: 2725

Modified:
   trunk/thuban/ChangeLog
   trunk/thuban/Thuban/UI/about.py
Log:
Thuban/UI/about.py: Reworked the about text. It shows now
when somebody was active on Thuban. Added a list of maintainers.
Bernhard Reiter is the current maintainer, following up on Bernhard Herzog. 


Modified: trunk/thuban/ChangeLog
===================================================================
--- trunk/thuban/ChangeLog	2007-02-20 10:25:11 UTC (rev 2724)
+++ trunk/thuban/ChangeLog	2007-02-20 10:36:20 UTC (rev 2725)
@@ -1,5 +1,10 @@
 2007-02-20 Bernhard Reiter <bernhard at intevation.de>
 
+	* Thuban/UI/about.py: Reworked the about text. It shows now
+	when somebody was active on Thuban. Added a list of maintainers.
+	Bernhard Reiter is the current maintainer, following up on Bernhard
+	Herzog. 
+
 	* Extensions/export_shapefile/export_shapefile.py: untabify.
 
 	* test/README: Added example how to set the PATH for postgis on

Modified: trunk/thuban/Thuban/UI/about.py
===================================================================
--- trunk/thuban/Thuban/UI/about.py	2007-02-20 10:25:11 UTC (rev 2724)
+++ trunk/thuban/Thuban/UI/about.py	2007-02-20 10:36:20 UTC (rev 2725)
@@ -1,4 +1,4 @@
-# Copyright (c) 2001-2005 by Intevation GmbH
+# Copyright (c) 2001-2007 by Intevation GmbH
 # Authors:
 # Jonathan Coles <jonathan at intevation.de>
 # Bernhard Reiter <bernhard at intevation.de>
@@ -34,12 +34,15 @@
 
         # Note: The source code is in ASCII, so we escape some
         # characters to get byte strings in latin1.
-        lead_developer = 'Bernhard Herzog'
-        developers = [ 'Jonathan Coles',
-                       'Frank Koormann',
-                       internal_from_unicode(u'Martin M\xfcller'),
-                       'Bernhard Reiter',
-                       'Jan-Oliver Wagner' ]
+        maintainers = [ 'Bernhard Reiter (2006 - current)',
+                        'Bernhard Herzog (2001 - 2005)' ]
+        lead_developer = 'Bernhard Herzog (2001 - 2005)'
+        developers = [ 'Jonathan Coles (2003, 2005)',
+                       'Frank Koormann (2002 - )',
+                       internal_from_unicode(u'Martin M\xfcller (2003)'),
+                       'Didrik Pinte (2006 - )',
+                       'Bernhard Reiter (2004 - )',
+                       'Jan-Oliver Wagner (2002 - 2005)' ]
         translators = [ ( _('French'), 'Daniel Calvelo Aros' ),
                         ( _('German'),
                           internal_from_unicode(u'Bj\xf6rn Broscheit')),
@@ -48,10 +51,10 @@
                         ( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'),
                         ( _('Russian'), 'Alex Shevlakov'),
                         ( _('Spanish'), 'Daniel Calvelo Aros') ]
-        other_contributors = [ 'Jonathan Byron',
-                               'Didrik Pinte',
-                               'Ole Rahn',
-                               'Silke Reimer' ]
+        other_contributors = [ 'Jonathan Byron (2004)',
+                               'Ole Rahn (2004)',
+                               'Silke Reimer (2003, 2004)',
+                               'Martin "Joey" Schulze (2004, 2005)' ]
         dyn_modules = [ ('wxPython', versions['wxPython']),
                         ('Python',   versions['python']),
                         ('PySQLite', versions['pysqlite']),
@@ -91,6 +94,11 @@
             text += _('\tNone registered.\n')
         text += '\n'
 
+        text += _('Maintainers:\n')
+        for name in maintainers:
+            text += '\t%s\n' % name
+        text += '\n'
+
         text += _('Lead Developer:\n')
         text += '\t%s\n\n' % lead_developer
 
@@ -138,7 +146,7 @@
 
         text_title = wx.StaticText(self, -1,
             _("Thuban is a program for exploring geographic data.\n\n") +
-            "Copyright 2001-2006 Intevation GmbH.\n" +
+            "Copyright 2001-2007 Intevation GmbH.\n" +
             _("Thuban is licensed under the GNU GPL"),
                                   style=wx.ST_NO_AUTORESIZE|wx.ALIGN_CENTRE)
 



More information about the Thuban-commits mailing list