/[thuban]/trunk/thuban/Thuban/UI/about.py
ViewVC logotype

Diff of /trunk/thuban/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 1964 by bh, Wed Nov 19 19:48:47 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 41  class About(wxDialog): Line 42  class About(wxDialog):
42                          ('Python',   versions['python']),                          ('Python',   versions['python']),
43                          ('PySQLite', versions['pysqlite']),                          ('PySQLite', versions['pysqlite']),
44                          ('SQLite',  versions['sqlite']),                          ('SQLite',  versions['sqlite']),
45                          ('GDAL',     versions.get('gdal',_('- not available')))]                          ('GDAL', versions.get('gdal', _('- not available'))),
46                            ('psycopg', versions.get('psycopg',
47                                                     _('- not available')))]
48          direct_modules = [ \          direct_modules = [ \
49                  ('GTK',      versions.get('gtk', _('- not available'))),                  ('GTK',      versions.get('gtk', _('- not available'))),
50                  ('proj',     versions['proj']) ]                  ('proj',     versions['proj']) ]
# Line 54  class About(wxDialog): Line 57  class About(wxDialog):
57              text+= '\t%s %s\n' % (name, version)              text+= '\t%s %s\n' % (name, version)
58          text += '\n'          text += '\n'
59    
60            if gdal_support_status:
61                text += gdal_support_status + "\n\n"
62    
63          text += _('Compiled for:\n')          text += _('Compiled for:\n')
64    
65          for name, version in direct_modules:          for name, version in direct_modules:

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26