/[thuban]/branches/WIP-pyshapelib-bramz/Thuban/UI/about.py
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/Thuban/UI/about.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1628 by jan, Fri Aug 22 12:53:41 2003 UTC revision 1980 by bh, Tue Nov 25 15:59:18 2003 UTC
# Line 15  from wxPython.wx import * Line 15  from wxPython.wx import *
15    
16  from Thuban import _  from Thuban import _
17  from Thuban.version import versions  from Thuban.version import versions
18    from Thuban.Model.resource import gdal_support_status
19    
20  class About(wxDialog):  class About(wxDialog):
21    
# Line 27  class About(wxDialog): Line 28  class About(wxDialog):
28                    | wxRESIZE_BORDER,                    | wxRESIZE_BORDER,
29              size = (400, 250))              size = (400, 250))
30    
31            # Note: The source code is in ASCII, so we escape some
32            # characters to get byte strings in latin1.
33          lead_developer = 'Bernhard Herzog'          lead_developer = 'Bernhard Herzog'
34          developers = [ 'Jonathan Coles', 'Frank Koormann',          developers = [ 'Jonathan Coles', 'Frank Koormann',
35                         'Martin M�ller', 'Jan-Oliver Wagner' ]                         'Martin M\xfcller', 'Jan-Oliver Wagner' ]
36          translators = [ ( _('French'), 'Daniel Calvelo Aros' ),          translators = [ ( _('French'), 'Daniel Calvelo Aros' ),
37                          ( _('German'), 'Bj�rn Broscheit'),                          ( _('German'), 'Bj\xf6rn Broscheit'),
38                          ( _('Italian'), 'Maurizio Napolitano'),                          ( _('Italian'), 'Maurizio Napolitano'),
39                          ( _('Russian'), 'Alex Shevlakov'),                          ( _('Russian'), 'Alex Shevlakov'),
40                          ( _('Spanish'), 'Daniel Calvelo Aros') ]                          ( _('Spanish'), 'Daniel Calvelo Aros') ]
# Line 41  class About(wxDialog): Line 44  class About(wxDialog):
44                          ('Python',   versions['python']),                          ('Python',   versions['python']),
45                          ('PySQLite', versions['pysqlite']),                          ('PySQLite', versions['pysqlite']),
46                          ('SQLite',  versions['sqlite']),                          ('SQLite',  versions['sqlite']),
47                          ('GDAL',     versions.get('gdal',_('- not available')))]                          ('GDAL', versions.get('gdal', _('- not available'))),
48                            ('psycopg', versions.get('psycopg',
49                                                     _('- not available')))]
50          direct_modules = [ \          direct_modules = [ \
51                  ('GTK',      versions.get('gtk', _('- not available'))),                  ('GTK',      versions.get('gtk', _('- not available'))),
52                  ('proj',     versions['proj']) ]                  ('proj',     versions['proj']) ]
# Line 54  class About(wxDialog): Line 59  class About(wxDialog):
59              text+= '\t%s %s\n' % (name, version)              text+= '\t%s %s\n' % (name, version)
60          text += '\n'          text += '\n'
61    
62            if gdal_support_status:
63                text += gdal_support_status + "\n\n"
64    
65          text += _('Compiled for:\n')          text += _('Compiled for:\n')
66    
67          for name, version in direct_modules:          for name, version in direct_modules:

Legend:
Removed from v.1628  
changed lines
  Added in v.1980

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26