瀏覽代碼

grass.py: show version with --version; minor cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64361 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 10 年之前
父節點
當前提交
1cf79b7ddd
共有 2 個文件被更改,包括 6 次插入5 次删除
  1. 5 4
      lib/init/grass.py
  2. 1 1
      lib/init/license.txt

+ 5 - 4
lib/init/grass.py

@@ -17,7 +17,7 @@
 #               command line options for setting the GISDBASE, LOCATION,
 #               command line options for setting the GISDBASE, LOCATION,
 #               and/or MAPSET. Finally it starts GRASS with the appropriate
 #               and/or MAPSET. Finally it starts GRASS with the appropriate
 #               user interface and cleans up after it is finished.
 #               user interface and cleans up after it is finished.
-# COPYRIGHT:    (C) 2000-2014 by the GRASS Development Team
+# COPYRIGHT:    (C) 2000-2015 by the GRASS Development Team
 #
 #
 #               This program is free software under the GNU General
 #               This program is free software under the GNU General
 #               Public License (>=v2). Read the file COPYING that
 #               Public License (>=v2). Read the file COPYING that
@@ -1016,7 +1016,7 @@ def show_banner():
 
 
 
 
 def say_hello():
 def say_hello():
-    sys.stderr.write(_("Welcome to GRASS %s") % grass_version)
+    sys.stderr.write(_("Welcome to GRASS GIS %s") % grass_version)
     if grass_version.endswith('svn'):
     if grass_version.endswith('svn'):
         try:
         try:
             filerev = open(os.path.join(gisbase, 'etc', 'VERSIONNUMBER'))
             filerev = open(os.path.join(gisbase, 'etc', 'VERSIONNUMBER'))
@@ -1035,7 +1035,7 @@ r"""
 %-41s%s (%s)
 %-41s%s (%s)
 %-41sg.manual -i
 %-41sg.manual -i
 %-41sg.version -c
 %-41sg.version -c
-""" % (_("GRASS homepage:"),
+""" % (_("GRASS GIS homepage:"),
        _("This version running through:"),
        _("This version running through:"),
        shellname, os.getenv('SHELL'),
        shellname, os.getenv('SHELL'),
        _("Help is available with the command:"),
        _("Help is available with the command:"),
@@ -1070,7 +1070,7 @@ def csh_startup():
 
 
     f.write("set prompt = '\\\n")
     f.write("set prompt = '\\\n")
     f.write("Mapset <%s> in Location <%s> \\\n" % (mapset, location_name))
     f.write("Mapset <%s> in Location <%s> \\\n" % (mapset, location_name))
-    f.write("GRASS %s > '\n" % grass_version)
+    f.write("GRASS GIS %s > '\n" % grass_version)
     f.write("set BOGUS=``;unset BOGUS\n")
     f.write("set BOGUS=``;unset BOGUS\n")
 
 
     path = os.path.join(userhome, ".grass.cshrc") # left for backward compatibility
     path = os.path.join(userhome, ".grass.cshrc") # left for backward compatibility
@@ -1261,6 +1261,7 @@ def parse_cmdline():
     for i in sys.argv[1:]:
     for i in sys.argv[1:]:
         # Check if the user asked for the version
         # Check if the user asked for the version
         if i in ["-v", "--version"]:
         if i in ["-v", "--version"]:
+            message("GRASS GIS %s" % grass_version)
             message('\n' + readfile(gfile("etc", "license")))
             message('\n' + readfile(gfile("etc", "license")))
             sys.exit()
             sys.exit()
         # Check if the user asked for help
         # Check if the user asked for help

+ 1 - 1
lib/init/license.txt

@@ -2,7 +2,7 @@ Geographic Resources Analysis Support System (GRASS) is Copyright,
 1999-GRASS_VERSION_DATE by the GRASS Development Team, and licensed under terms of the
 1999-GRASS_VERSION_DATE by the GRASS Development Team, and licensed under terms of the
 GNU General Public License (GPL) version >=2.
 GNU General Public License (GPL) version >=2.
  
  
-This GRASS GRASS_VERSION_NUMBER release is coordinated and produced by
+This GRASS GIS GRASS_VERSION_NUMBER release is coordinated and produced by
 the GRASS Development Team with contributions from all over the world.
 the GRASS Development Team with contributions from all over the world.
 
 
 This program is distributed in the hope that it will be useful, but
 This program is distributed in the hope that it will be useful, but