[GRASS-SVN] r50868 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Feb 19 05:51:17 EST 2012


Author: martinl
Date: 2012-02-19 02:51:17 -0800 (Sun, 19 Feb 2012)
New Revision: 50868

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI/about: show also svn revision


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2012-02-18 17:45:20 UTC (rev 50867)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2012-02-19 10:51:17 UTC (rev 50868)
@@ -525,14 +525,24 @@
                           flag = wx.ALIGN_LEFT)
         
         infoGridSizer.Add(item = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
-                                               label = _('GIS Library Revision:')),
+                                               label = _('SVN Revision:')),
                           pos = (2, 0),
                           flag = wx.ALIGN_RIGHT)
         
         infoGridSizer.Add(item = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
+                                               label = vInfo['revision']),
+                          pos = (2, 1),
+                          flag = wx.ALIGN_LEFT)
+
+        infoGridSizer.Add(item = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
+                                               label = _('GIS Library Revision:')),
+                          pos = (3, 0),
+                          flag = wx.ALIGN_RIGHT)
+        
+        infoGridSizer.Add(item = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
                                                label = vInfo['libgis_revision'] + ' (' +
                                                vInfo['libgis_date'].split(' ')[0] + ')'),
-                          pos = (2, 1),
+                          pos = (3, 1),
                           flag = wx.ALIGN_LEFT)
 
         infoSizer.Add(item = infoGridSizer,



More information about the grass-commit mailing list